Mono.Cecil.MetadataSystem.GetImportScope C# (CSharp) Method

GetImportScope() public method

public GetImportScope ( uint rid ) : ImportDebugInformation
rid uint
return ImportDebugInformation
		public ImportDebugInformation GetImportScope (uint rid)
		{
			if (rid < 1 || rid > ImportScopes.Length)
				return null;

			return ImportScopes [rid - 1];
		}