+ 1
? I dont understand ?
why doesn't this work? int c = 11; string x = c.ToString; why do I have to use parse or Conver.To in this case and cant use .ToString?
3 ответов
+ 1
I don't know much c# but maybe you need to complete with () parentheses. c.ToString();
+ 1
Michael ToString is a method and method always end with (). So you should use ToString().
0
YEAH thanks for the answers I kinda forgot the ()