Microsoft.Web.Administration.StringExtensions.ElementTagNameToName C# (CSharp) Method

ElementTagNameToName() public static method

public static ElementTagNameToName ( this tag ) : string
tag this
return string
        public static string ElementTagNameToName(this string tag)
        {
            return tag.Contains("/") ? tag.Substring(tag.LastIndexOf('/') + 1) : tag;
        }
    }