I have been coding for a while in C# and want to learn XNA game development, I have googled around but unable to find a good tutorial. Can someone provide link to some tutorial that can teach me from the begining.
9 Answers
Microsoft offers a lot for this, you could start with:
And don't forget the complete XNA Creator's Club online:

- 2,646
- 4
- 33
- 53
I would recommend Riemers tutorials, along with others already recommended.

- 7,347
- 1
- 20
- 23
-
riemer makes some cool stuff really easy to learn... riemers was my first tutorial in 3d game programming... now a friend and i have a game on steam – LostPhysx Sep 25 '12 at 12:37
There's an introduction tutorial on CodeProject here about XNA games, there is also a step-by-step version of Space Invaders using XNA also on CodeProject. Here is also a car simulator on CodeProject also. Do a search there using the keyword 'XNA' and you will be very surprised! :)
Hope this helps, Best regards, Tom.

- 34,087
- 8
- 78
- 110
i'll recommend 3D buzz tutorials for newbies
see my post :
video tutorial links are at the bottom :

- 327
- 5
- 12
http://www.riemers.net/ is great, I used this a lot when learning XNA. Also, I wrote a little tutorial in making a clone of Pong in XNA 4.0 you can take a look at if you like. http://ross-warren.co.uk/pong-clone-in-xna-4-0-for-windows/

- 1,551
- 14
- 15
Visit the XNA Creators Club website: http://creators.xna.com/. There are loads of good tutorials. Googling around should have helped!!

- 5,155
- 3
- 32
- 38
I second the recommendation to Riemers tutorials. I would also like to add a helpful debugging library to the list. XNA Debug Terminal is an open source library you can setup in seconds that allows you to see the value of any variable, invoke any method, watch values changing in real-time, and more by simply typing c# code into a terminal-like display that appears atop your game window. Unlike the normal Visual Studio debugger, you can invoke arbitrary code while your game is running. You can find out more about this at http://www.protohacks.net/xna_debug_terminal . This will greatly help you to avoid a lot of frustration while learning XNA.

- 51
- 1
I also recommend James Silva's book: http://www.amazon.com/Building-XNA-2-0-Games-Professionals/dp/1430209798
He's an author of two XBLA titles and many successful XBLIG titles.

- 15,622
- 30
- 70
- 84