Click here to Skip to main content
15,905,148 members

Comments by f.zeinali (Top 2 by date)

f.zeinali 23-Oct-11 12:45pm View    
plz run this code
<pre lang="c#">
int x = 2;
int y = ++x;
MessageBox.Show(x.ToString()+"\n"+y.ToString());
</pre>
The result is
x=3
y=3
f.zeinali 21-Oct-11 14:32pm View    
thanks