ServiceStack.UrlExtensions.ExpandTypeName C# (CSharp) Метод

ExpandTypeName() публичный статический Метод

public static ExpandTypeName ( this type ) : string
type this
Результат string
        public static string ExpandTypeName(this Type type)
        {
            if (type.IsGenericType())
                return ExpandGenericTypeName(type);

            return type.GetOperationName();
        }