Skip to main content
added 1 character in body; deleted 4 characters in body; added 2 characters in body
Source Link
liggiorgio
  • 5.5k
  • 6
  • 27
  • 38

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example.

Dictionary<string,int> dict = new Dictionary< string,int>();
 
dict.add(userInput, 0);```

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example.

Dictionary<string,int> dict = new Dictionary< string,int>();
 
dict.add(userInput, 0);```

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example.

Dictionary<string,int> dict = new Dictionary< string,int>();
dict.add(userInput, 0);
added 77 characters in body
Source Link
Bogdan
  • 163
  • 6

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example. Dictionary<string,int> dict = new Dictionary< string,int>();

dict.add(userInput, 0);

Dictionary<string,int> dict = new Dictionary< string,int>();

dict.add(userInput, 0);```

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example. Dictionary<string,int> dict = new Dictionary< string,int>();

dict.add(userInput, 0);

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example.

Dictionary<string,int> dict = new Dictionary< string,int>();

dict.add(userInput, 0);```
added 77 characters in body
Source Link
Bogdan
  • 163
  • 6

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example. Dictionary<string,int> dict = new Dictionary< string,int>();

dict.add(userInput, 0);

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example.

You do not need this type of functionality. User can set string to any value and you can use the string value to access the variable for example. Dictionary<string,int> dict = new Dictionary< string,int>();

dict.add(userInput, 0);

Source Link
Bogdan
  • 163
  • 6
Loading