Answers for "dictionary in c# unity"

C#
1

dictionary in c# unity

public class ScriptA : MonoBehaviour{
    public Dictionary<string, GameObject> dictio = new Dictionary<string, GameObject>();
}
Posted by: Guest on October-25-2020
1

Dictionaries in unity

Dictionary<keyClass,valueClass> dictionaryName;
dictionaryName = new Dictionary<keyClass,valueClass>();
Posted by: Guest on October-20-2020

C# Answers by Framework

Browse Popular Code Answers by Language