Object - ToNullableULongOrDefault

An object extension method that converts this object to a nullable u long or default.

Try it

public static void Main()
{
	object val1 = 123;
    object val2 = "10986423210";
	object thisNull = null;
	object thisInvalid = "A100";
	
	string format = "{0, -20} {1, -15}";
	
	Console.WriteLine(format, "Object", "ToNullableULongOrDefault");
	Console.WriteLine(format, "------", "-----------------------");
	
	// C# Extension Method: Object - ToNullableULongOrDefault
	Console.WriteLine(format, val1, val1.ToNullableULongOrDefault());
	Console.WriteLine(format, val2, val2.ToNullableULongOrDefault());
	Console.WriteLine(format, "null", thisNull.ToNullableULongOrDefault());
	Console.WriteLine(format, thisInvalid, thisInvalid.ToNullableULongOrDefault());
	Console.WriteLine(format, thisInvalid, thisInvalid.ToNullableULongOrDefault(1));
	Console.WriteLine(format, thisInvalid, thisInvalid.ToNullableULongOrDefault(() => 2));
}

View Source
using System;

public static partial class Extensions
{
    /// <summary>
    ///     An object extension method that converts this object to a nullable u long or default.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <returns>The given data converted to an ulong?</returns>
    public static ulong? ToNullableULongOrDefault(this object @this)
    {
        try
        {
            if (@this == null || @this == DBNull.Value)
            {
                return null;
            }

            return Convert.ToUInt64(@this);
        }
        catch (Exception)
        {
            return default(ulong);
        }
    }

    /// <summary>
    ///     An object extension method that converts this object to a nullable u long or default.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <param name="defaultValue">The default value.</param>
    /// <returns>The given data converted to an ulong?</returns>
    public static ulong? ToNullableULongOrDefault(this object @this, ulong? defaultValue)
    {
        try
        {
            if (@this == null || @this == DBNull.Value)
            {
                return null;
            }

            return Convert.ToUInt64(@this);
        }
        catch (Exception)
        {
            return defaultValue;
        }
    }

    /// <summary>
    ///     An object extension method that converts this object to a nullable u long or default.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <param name="defaultValueFactory">The default value factory.</param>
    /// <returns>The given data converted to an ulong?</returns>
    public static ulong? ToNullableULongOrDefault(this object @this, Func<ulong?> defaultValueFactory)
    {
        try
        {
            if (@this == null || @this == DBNull.Value)
            {
                return null;
            }

            return Convert.ToUInt64(@this);
        }
        catch (Exception)
        {
            return defaultValueFactory();
        }
    }
}