Mono.TypeExtensions.GetAssembly C# (CSharp) Метод

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

public static GetAssembly ( this type ) : Assembly
type this
Результат System.Reflection.Assembly
        public static Assembly GetAssembly(this Type type)
        {
            #if NET_CORE
            return type.GetTypeInfo ().Assembly;
            #else
            return type.Assembly;
            #endif
        }