You can define a number in various ways in C#,
1F // a float with the value 1 1L // a long with the value 1 1D // a double with the value 1
for money:
decimal mon = 1m;
for output:
string curr = String.Format("{0:C}", mon); //output $1.00