Microsoft.JScript.GlobalScope.AddComponentScope C# (CSharp) 메소드

AddComponentScope() 개인적인 메소드

private AddComponentScope ( GlobalScope component ) : void
component GlobalScope
리턴 void
      internal void AddComponentScope(GlobalScope component){
        if (this.componentScopes == null)
          this.componentScopes = new ArrayList();
        this.componentScopes.Add(component);
        component.thisObject = this.thisObject; //Component scopes pretend they are one and the same as their parent scope.
      }