Hi,
I'm a beginner in visual studio 2005 and i need to know how to denote not equal to and end of file. Please do suggest.
Hi
In Vb.NET
<> is used for not equal to. For example:
if i <> 10
In C#
!= used for example:
if (i!=10)
For eof for reading data from file, we use EOF() function. See the following link for example:
http://msdn.microsoft.com/en-us/library/7ct2yy4s%28v=vs.71%29.aspx
Thanx Adeelehsan for