PERWAPI.NestedClassRef.GetScope C# (CSharp) Method

GetScope() public method

Get the scope of this ClassRef (either ModuleRef or AssemblyRef)
public GetScope ( ) : ReferenceScope
return ReferenceScope
        public override ReferenceScope GetScope()
        {
            if (scope == null)
                scope = parent.GetScope();
            return scope;
        }