Volante.Impl.ClassDescriptor.newInstance C# (CSharp) 메소드

newInstance() 개인적인 메소드

private newInstance ( ) : Object
리턴 Object
        internal Object newInstance()
        {
            try
            {
                return defaultConstructor.Invoke(noArgs);
            }
            catch (System.Exception x)
            {
                throw new DatabaseException(DatabaseException.ErrorCode.CONSTRUCTOR_FAILURE, cls, x);
            }
        }