AjTalk.Language.DotNetObject.NewObject C# (CSharp) Method

NewObject() public static method

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