Altra soluzione:

codice:
int cents = 12345;
string Risultato = (cents / 100).ToString() + "," + (cents % 100).ToString();