Mono.Cecil.MetadataSystem.GetImportScope C# (CSharp) 메소드

GetImportScope() 공개 메소드

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

			return ImportScopes [rid - 1];
		}