AjTalk.Language.DotNetObject.NewObject C# (CSharp) Méthode

NewObject() public static méthode

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