Data Types C#

using System;
class MainClass
{
    public static void ShowDecimalToOACurrency( decimal Argument )
    {
        try
        {
            long oaCurrency = decimal.ToOACurrency( Argument );
            Console.WriteLine( oaCurrency );
        }
        catch( Exception ex )
        {
            Console.WriteLine( ex );
        }
    }
    public static void Main( )
    {
        ShowDecimalToOACurrency( 1M );
    }
}