kcwallace Posted July 25, 2006 Posted July 25, 2006 As you can tell, I am very new to C# programming. Can someone point me to an example for how to write the C# equivalent of the below line? For X = FileLen To 1 Step -1 Quote Go Beavs!!!
Administrators PlausiblyDamp Posted July 25, 2006 Administrators Posted July 25, 2006 for (int x = FileLen; x>=1; x--) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.