PERWAPI.CILWriter.AddRef C# (CSharp) Метод

AddRef() приватный Метод

private AddRef ( ReferenceScope refScope ) : void
refScope ReferenceScope
Результат void
        internal void AddRef(ReferenceScope refScope)
        {
            if (!externRefs.Contains(refScope)) {
                externRefs.Add(refScope);
            }
        }

Usage Example

Пример #1
0
 internal override void BuildCILInfo(CILWriter output)
 {
     if (!special && scope != null) {
         output.AddRef(scope);
     }
 }