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);
        }