PERWAPI.NestedClassRef.GetScope C# (CSharp) Méthode

GetScope() public méthode

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