SIL.FieldWorks.UnicodeCharEditor.PUAInstaller.StillInRange C# (CSharp) Метод

StillInRange() публичный Метод

Checks to make sure the given codeIndex is within the current bidi section. Performs bounds checking as well.
public StillInRange ( int codeIndex, List ucdCharacters, string currentBidiClass ) : bool
codeIndex int The index of a PUA character in puaCharacters
ucdCharacters List The list of PUA characters
currentBidiClass string The current bidi class value. If puaCharacters[codeIndex] doesn't match this we aren't in range.
Результат bool
		public bool StillInRange(int codeIndex, List<IUcdCharacter> ucdCharacters, string currentBidiClass)
		{
			return codeIndex < ucdCharacters.Count && ucdCharacters[codeIndex].SameRegion(currentBidiClass);
		}
		#endregion