0
How will you know in C# when to use "parse"
C#,parse
3 Answers
0
Alright, I understood when you can't assign an integer to a string.
For example, int num = "25"
Then you have to use int num = int.parse ("25").
+ 2
By understanding its purpose.
+ 1
Parse is like a convert way!