Posts
 
Reputation
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
~2K People Reached
Favorite Tags
c# x 1

2 Posted Topics

Member Avatar for Murprogrammed

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.

Member Avatar for adcgv
0
153
Member Avatar for ddanbe

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) { …

Member Avatar for kel634
0
2K

The End.