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
        }