AjScript.Primitives.StringFunction.StringFunction C# (CSharp) Метод

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

public StringFunction ( IContext context ) : System
context IContext
Результат System
        public StringFunction(IContext context)
            : base(null, null, context)
        {
            var prototype = new StringObject();

            this.SetValue("prototype", prototype);
            prototype.SetValue("toString", new LambdaCallable(ToString));
        }