Mono.Cecil.Cil.MethodDebugInformation.GetScopes C# (CSharp) Method

GetScopes() public method

public GetScopes ( ) : IEnumerable
return IEnumerable
        public IEnumerable<ScopeDebugInformation> GetScopes()
        {
            if (scope == null)
                return Empty<ScopeDebugInformation>.Array;

            return GetScopes (new[] { scope });
        }

Same methods

MethodDebugInformation::GetScopes ( IList scopes ) : IEnumerable