fork download
  1. using static System.Console;
  2. using static System.Convert;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. var x = 15.7M;
  7. WriteLine(ToUInt16(x));
  8. WriteLine((ushort)x);
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/273505/101
Success #stdin #stdout 0.02s 16320KB
stdin
Standard input is empty
stdout
16
15