Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どのように C# に変換できますか?
For i = IBase36.Length - 1 To 0 Step i - 1 Next
ありがとうございました!
for (int i = IBase36.Length -1; i >=0; i--) { //Your Treatment }
これを試して:
for (int i = IBase36.Length -1; i >=0; i--) { //Do stuff }