Date Modified
Monday, February 03, 2003
|
Assignments, A little different
|
|
|
| VB.NET |
C# |
| = (A=B) Either Assignment or Checking Value of A is Equal to B |
== Checking Value of A Is Equal to B |
| A=A+1, A=A-1 |
A++ , A-- |
| <> |
!= |
| OR |
|| |
| AND |
&& |
These are not complete, but give a pretty good idea.
|
|
|
|
|
|
|
|
|
|
|
|