QUOTE(narmer93 @ 19 Jun, 2008 - 04:11 PM)

i agree about that c# is the easier after vb.net
they are similer in that code
vb
textbox1.text="text i want"
but i think in c# it should end with ; and c# contais alot of they symbols {
}
can some bosy tell me how to use
if___________then
_____________
else
______________________
end if
in c#?
and what about j++ is it difficult too?
CODE
if(true) {
System.console.println("Some text.");
}
else {
System.console.println("More text");
}
The scope of the if..else setup is constrained by the curly brackets "{" and "}". So no "endif" or "then"
EDIT: And J++ (or J# as it is now) is just Java for .NET. In other words, a horrible piece of crap bolted to a framework that it wasn't built for. Offense to Java-junkies semi-intended.
This post has been edited by MorphiusFaydal: 19 Jun, 2008 - 04:10 PM