|
  
|
|
|||||||
| Development Discussions All developers who are coding games may stop by here for any help, suggestions, and everything development related. |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Zewbie
Join Date: May 2008
Posts: 9
Reputation: 10
Donate |
Hey is there any tutorials or something teaching you c# and xna. I only know vb.net.
Last edited by DirtiDan12 : 05-30-2008 at 05:49 PM. |
|
|
|
| Remove Advertisements Sponsored Links | |
Advertisement |
|
|
|
#4 (permalink) |
|
Jr. Member
Join Date: Nov 2007
Location: Pennsylvania
Posts: 354
Reputation: 17
Donate |
Sim Reality, I don't mean to sound like a downer, but your tutorial assumes people at least know how to program a basic application or basic game in C#
__________________
To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ![]() |
|
|
|
|
|
#5 (permalink) |
|
Jr. Member
Join Date: May 2008
Posts: 410
Reputation: 60
Donate |
That post tells you lots. First it tells you to learn C# before XNA. It gives you a link even. If that isn't good enough, use Google. I then say to learn XNA only after you learn C#. I give a link to my tutorial and, again, Google searching will bring more results.
|
|
|
|
|
|
#7 (permalink) |
|
Jr. Member
Join Date: May 2008
Posts: 410
Reputation: 60
Donate |
Yes it does. If you read through all of those lessons, it's pretty good for being a free tutorial.
If it isn't good enough for you, go buy a C# book or try one of the other million results for Googling "C# tutorial". There are plenty of things out there to find, but you have to put in some initiative to seek them out. |
|
|
|
|
|
#9 (permalink) |
|
Jr. Member
Join Date: May 2008
Posts: 410
Reputation: 60
Donate |
Learn the whole language to a basic degree. You should know probably 70-80% of the stuff covered at http://www.csharp-station.com/Tutorial.aspx before you even attempt a game. The problem is that C# is like your toolbox. There are lots of things in C# you can use to help make a game. If you only know how to use 10% of those things, you likely will have missed a better way to do something and wind up using a hammer to put a screw in. The more you know C#, the quicker, easier, and more fun programming games will be.
There will always be people who disagree with me, but from my experience teaching others and my own programming over the years, I still firmly believe this is the best route to take when starting into game programming. |
|
|
|
|
|
#10 (permalink) |
|
Zewbie
Join Date: May 2008
Location: Mississippi
Posts: 9
Reputation: 10
Donate |
http://www.informit.com/library/cont...ours&seqNum=11 here is a tutorial i have been using. idk i think it is pretty good but im not sure if it has any lessons on makin games
__________________
Nothing Interesting Ever Happens Around Here. To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. For all teh Death Note fans heres a forum D-("Q) To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. ![]() |
|
|
|
|
|
#11 (permalink) | |
|
Zewbie
Join Date: May 2008
Posts: 9
Reputation: 10
Donate |
Quote:
Edit: I figured that out but now when i try to debug i get an error with the Main(). One More thing how do you debug because when ever i debug something the screen changes for a second then goes back. Last edited by DirtiDan12 : 06-03-2008 at 12:27 PM. |
|
|
|
|
|
|
#12 (permalink) | |
|
Zewbie
Join Date: May 2008
Posts: 9
Reputation: 10
Donate |
Quote:
|
|
|
|
|
|
|
#13 (permalink) |
|
Jr. Member
Join Date: May 2008
Posts: 410
Reputation: 60
Donate |
What do you mean? Are you just working with a console application? If so try putting Console.ReadKey() at the end of your Main method and try again. What happens is that it pops up, runs all your code, runs out of code, and closes the window. ReadKey makes it wait for you to press a button to continue, which will keep the window open.
|
|
|
|
|
|
#15 (permalink) |
|
Jr. Member
Join Date: May 2008
Posts: 410
Reputation: 60
Donate |
So you aren't doing a console application then. What kind of project are you working on? What do you mean by "it just changes screens for a second"? Please give us some details or there is no chance of us being able to help you.
|
|
|
|
|
|
#16 (permalink) |
|
Zewbie
Join Date: May 2008
Posts: 9
Reputation: 10
Donate |
Im just seeing the Welcome app in lesson 1 of that tutorial on your webpage. Now when i start debugging with Console.ReadKey() i get that error in my previous post.
my code is: using System; class InteractiveWelcome { public static void Main() { Console.Write("What is Your Name?"); Console.Write("Hello, [0] ! ", Console.ReadLine()); Console.WriteLine("Welcome Home"); Console.ReadLine(); Console.ReadKey(); } } Last edited by DirtiDan12 : 06-04-2008 at 03:26 PM. |
|
|
|
![]() |
| Thread Tools | |
|
|
| |