Int to string: cannot convert from ‘method group’ to ‘string’ [closed]

You are missing the parentheses of the method call:

ToString()

Without the parentheses, the expression is a method group — that is, a reference to one or more overloaded methods.

Leave a Comment