Author Topic: XNA and C#  (Read 1297 times)

0 Members and 1 Guest are viewing this topic.

Offline Iridescent

  • Soldier
  • **
  • Posts: 147
  • Also known as Eoi
XNA and C#
« on: August 09, 2007, 01:33:11 am »
Has anyone had nay experience with either of the two?
I've decided to learn to program in XNA, which will mean learning C#.
I'd like to know how long it took people to grasp the language and what coding experience you've had.
No animated signatures
Rememer that people

Offline Xxypher

  • Veteran
  • *****
  • Posts: 1319
  • Soldat Veteran.
Re: XNA and C#
« Reply #1 on: August 09, 2007, 01:42:51 am »
I can only do GML and HTML... Sorry.

Offline Veritas

  • Camper
  • ***
  • Posts: 271
  • Waco
Re: XNA and C#
« Reply #2 on: August 09, 2007, 02:09:57 am »
I really like C#, I haven't gotten into XNA though. Personally, I'd rather try to use something like SDL, but thats personal choice.
As with most programming languages, its really easy to get into once you learn the syntax, assuming you've already learned to program in another langauge. I have experience with Java and Lisp, and it was easy to pick up for me.

Good Resources:
http://www.charlespetzold.com/dotnet/
http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-334.pdf
http://www.gamedev.net/community/forums/default.asp?pid=84

Good luck!
DEHUMANIZE YOURSELF AND FACE TO BLOODSHED

Offline Iridescent

  • Soldier
  • **
  • Posts: 147
  • Also known as Eoi
Re: XNA and C#
« Reply #3 on: August 09, 2007, 04:14:09 am »
At the moment I'm reading http://www.publicjoe.co.uk/csharp1/tut.html
Its getting a bit messy for me as I can't really do any coding, I can only read at the moment.
I'm also planning on getting http://www.amazon.co.uk/Microsoft-Express-Programming-Absolute-Beginner/dp/1592008186/ref=pd_bbs_sr_2/026-4003345-1836435?ie=UTF8&s=books&qid=1186650743&sr=8-2
As it seems pretty useful to what I'm doing (I will be using that program).

I'm looking to see if any friends are interested in the same thing and then we could learn at the same time, which, I believe, would speed up the process for the both of us.
No animated signatures
Rememer that people

Offline Clawbug

  • Veteran
  • *****
  • Posts: 1393
  • 1184!
Re: XNA and C#
« Reply #4 on: August 09, 2007, 04:58:51 am »
I used to do some stuff with C#, but the .NET stuff just frove me crazy.
Whic one do you prefer? (Not real examples, but gives the overall image)

Code: [Select]
system. api.call.screen.print.string("Hello World!");
system.api.call.system.sleep(5000);
OR
Code: [Select]
Print "Hello world!"
Sleep 5000
?
Fight! Win! Prevail!

Offline bja888

  • Flagrunner
  • ****
  • Posts: 745
  • Working
    • Bja888.com
Re: XNA and C#
« Reply #5 on: August 09, 2007, 06:28:38 am »
Code: [Select]
system. api.call.screen.print.string("Hello World!");
system.api.call.system.sleep(5000);

I know you where not trying be accurate but it was bugging me.

Code: [Select]
using System;
using System.Threading;

Thread.Sleep(5000);
Console.Write("Hello World");