Inheritance: Stream, IDisposable
Example #1
0
        public static XLDNavigator ReadToIndex(Stream stream, short index)
        {
            XLDNavigator nav = new XLDNavigator(stream);

            return(nav.GoToSubfile(index));
        }
Example #2
0
		public static XLDNavigator ReadToIndex(Stream stream, short index)
		{
			XLDNavigator nav = new XLDNavigator(stream);
			return nav.GoToSubfile(index);
		}
Example #3
0
        public static XLDNavigator ReadToIndex(string file, short index)
        {
            XLDNavigator nav = new XLDNavigator(file);

            return(nav.GoToSubfile(index));
        }
Example #4
0
		public static XLDNavigator ReadToIndex(string file, short index)
		{
			XLDNavigator nav = new XLDNavigator(file);
			return nav.GoToSubfile(index);
		}