ShaderTools.Hlsl.Symbols.TypeFacts.ToDisplayName C# (CSharp) Метод

ToDisplayName() статический приватный Метод

static private ToDisplayName ( this type ) : string
type this
Результат string
        internal static string ToDisplayName(this TypeSymbol type)
        {
            if (type.IsUnknown())
                return "<?>";

            if (type.IsMissing())
                return "<missing>";

            return type.Name;
        }