Hi all,

i'm working with Borland C# and want to load a binary file into memory.

Code:
		private void m_Open_Click(object sender, System.EventArgs e)
		{
			if ( openFileDialog.ShowDialog() == DialogResult.OK )
			{
				FileStream fs = new FileStream(openFileDialong.FileName, FileMode.Open);
				if (fs.CanRead)
				{

				}
				else
				{
				}
			}
			else
			{
			}
My question is how do i define a varaible that hold my "pointer" to the memory location and where is the correct place where the varaible should appeaer. I'm confused of all these Reader classes,
which is the best and most efficeint for it ?

Thanks!