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;
        }