AjTalk.Language.BaseBehavior.NewObject C# (CSharp) Метод

NewObject() публичный Метод

public NewObject ( ) : object
Результат object
        public virtual object NewObject()
        {
            if (this.IsIndexed)
                return new BaseIndexedObject(this, this.NoInstanceVariables);

            return new BaseObject(this, this.NoInstanceVariables);
        }