Mono.CompilerServices.SymbolWriter.MonoSymbolFile.DefineCapturedScope C# (CSharp) Метод

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

private DefineCapturedScope ( int scope_id, int id, string captured_name ) : void
scope_id int
id int
captured_name string
Результат void
        internal void DefineCapturedScope(int scope_id, int id, string captured_name)
        {
            if (reader != null)
                throw new InvalidOperationException ();

            AnonymousScopeEntry scope = anonymous_scopes [scope_id];
            scope.AddCapturedScope (id, captured_name);
        }

Usage Example

Пример #1
0
 public void DefineCapturedScope(int scope_id, int id, string captured_name)
 {
     file.DefineCapturedScope(scope_id, id, captured_name);
 }