Convert Boolean to String

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 5 años
Hey guys how are you ?



How can I convert Boolean(true and false) to string ("Pago" and "Não Pago") ?


Can someone help me ?


Thanks !
Hace 5 años
Hello,

Please look at here.



bool b = true;
Var stringvariable = b.ToString();


This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.