Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: Before starting C#(or XNA), learn the basics of the OOP(object oriented programming), objects, classes, methods, constructors, inheritance. After this C# will be a very easy for you, if you can make and use event handlers you can start making simple games. | |
Re: This is a simpler version: - get the last bit of the number (0 or 1) - << 1 the number - & with 1111 1111 (only needed if lastbit is 1 but I did it anyway) - add the last bit to this number [CODE]static int Rotate(int x) { … |
The End.