Mono.Cecil.MetadataSystem.GetImportScope C# (CSharp) Méthode

GetImportScope() public méthode

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

			return ImportScopes [rid - 1];
		}