Inheritance: IDisposable
Ejemplo n.º 1
0
		public ProfileData (string filename)
		{
			using (LogFileStream stream = new LogFileStream (filename)) {
				while (stream.ReadBlock ())
					AddBlock (stream.CurrentBlock);
			}
		}