8

When I forgot how everything works in c#.

Example:

var animalKey = 1;

Then I realize I needed it to be string.. and I couldn't figure out how to convert an int to a string... But all I needed was

var animalKey = "1";

I kicked myself pretty hard

Comments
Add Comment