System.SecurityUtils.SecureCreateInstance C# (CSharp) 메소드

SecureCreateInstance() 정적인 개인적인 메소드

This helper method provides safe access to Activator.CreateInstance. NOTE: This overload will work only with public .ctors.
static private SecureCreateInstance ( Type type ) : object
type Type
리턴 object
        internal static object SecureCreateInstance(Type type)
        {
            return SecureCreateInstance(type, null);
        }

Same methods

SecurityUtils::SecureCreateInstance ( Type type, object args ) : object