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

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

static private IsUserDefined ( this type ) : bool
type this
Результат bool
        internal static bool IsUserDefined(this TypeSymbol type)
        {
            return type.Kind == SymbolKind.Struct
                || type.Kind == SymbolKind.Class
                || type.Kind == SymbolKind.Interface;
        }