Object - ToDecimal

An object extension method that converts the @this to a decimal.

Try it

public static void Main()
{
    object[] values = { true, 'a', 123, 1.764e32, "9.78", "1e-02",
            1.67e03, "A100", "1,033.67", DateTime.Now,
            Double.MaxValue };

    foreach (object value in values)
    {
        try
        {
			//C# Extension Method: Object - ToDecimal
            decimal result = value.ToDecimal();
            Console.WriteLine("Converted the {0} value {1} to {2}.",
                              value.GetType().Name, value, result);
        }
        catch (OverflowException)
        {
            Console.WriteLine("The {0} value {1} is out of range of the Decimal type.",
                              value.GetType().Name, value);
        }
        catch (FormatException)
        {
            Console.WriteLine("The {0} value {1} is not recognized as a valid Decimal value.",
                              value.GetType().Name, value);
        }
        catch (InvalidCastException)
        {
            Console.WriteLine("Conversion of the {0} value {1} to a Decimal is not supported.",
                              value.GetType().Name, value);
        }
    }
}

View Source
using System;

public static partial class Extensions
{
    /// <summary>
    ///     An object extension method that converts the @this to a decimal.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <returns>@this as a decimal.</returns>
    public static decimal ToDecimal(this object @this)
    {
        return Convert.ToDecimal(@this);
    }
}