6 references to Method
Microsoft.CodeAnalysis.Features (6)
Contracts\EditAndContinue\ManagedInstructionId.cs (4)
41return Method.Equals(other.Method) && ILOffset == other.ILOffset; 48return Method.GetHashCode() ^ ILOffset; 55internal string GetDebuggerDisplay() => $"{Method.GetDebuggerDisplay()} IL_{ILOffset:X4}";
EditAndContinue\ActiveStatementsMap.cs (1)
146if (remapping.TryGetValue(instructionId.Method, out var regionsInMethod))
EditAndContinue\EditSession.cs (1)
1329var methodId = instructionId.Method.Method;