AjTalk.Language.DotNetObject.NewObject C# (CSharp) 메소드

NewObject() 공개 정적인 메소드

public static NewObject ( Type type, object args ) : object
type System.Type
args object
리턴 object
        public static object NewObject(Type type, object[] args)
        {
            return Activator.CreateInstance(type, args);
        }