BatchGuy.App.Extensions.ExtensionMethods.RemoveColons C# (CSharp) Method

RemoveColons() public static method

public static RemoveColons ( this value ) : string
value this
return string
        public static string RemoveColons(this string value)
        {
            string result = value.Replace(":", string.Empty);

            return result;
        }