minor typo

This commit is contained in:
discomethod 2014-05-26 18:16:11 +01:00
parent a4dc16c52f
commit 4e6a111b6f

View File

@ -307,7 +307,7 @@ on a new line! ""Wow!"", the masses cried";
// try parse will default to type default on failure
// in this case: 0
int tryInt;
if (int.TryParse("123", out tryInt)) // Funciton is boolean
if (int.TryParse("123", out tryInt)) // Function is boolean
Console.WriteLine(tryInt); // 123
// Convert Integer To String