StringExtensions.GetTypeName C# (CSharp) Method

GetTypeName() public static method

public static GetTypeName ( string relativePath ) : string
relativePath string
return string
    public static string GetTypeName(this string relativePath) => relativePath.Split('.').Last();
}