Julian Gonzalez

Generation

generate functionSat, 01 Apr 2023

using dictionarys in c#

Dictionary<string, int> numbers = new Dictionary<string, int>(); numbers["one"] = 1; numbers["two"] = 2; numbers["three"] = 3; int value = numbers["one"]; // value is 1

Want to kickstart your project?Use the new AI Studio to create your code