Cannot convert method group ‘ToString’ to non-delegate type ‘string’. Did you intend to invoke the method?
in Italian:
Impossibile convertire il gruppo di metodi ‘ToString’ nel tipo non delegato ‘string’. Si desiderava richiamare il metodo?
Solution:
You miss the parentheses: ToString()
Did my solution solve your problem?