AlbLib.XLD.XLDNavigator.GetSubfileLength C# (CSharp) Method

GetSubfileLength() public method

public GetSubfileLength ( short index ) : int
index short
return int
		public int GetSubfileLength(short index)
		{
			if(0 > index || index > nEntries)throw new ArgumentOutOfRangeException("index");
			return entriesLengths[index];
		}