views:

157

answers:

2

Hello.

I want to build a card game in C# ASP.Net.

Something like blackjack or solitaire.

Has anyone any ideas on how to go about doing this or any references I could refer to? Books on card game designs would be a good help.

Help greatly appreciated.

Cheers.

+1  A: 

Blackjack's rules are very basic, and is a nice exercise.

Wikipedia will probably give you all the rules you need.

I have no experience with Solitaire, but I know something like poker is a quite bit harder.

leppie
+1  A: 

Here's the Blackjack Starter Kit in C# from Microsoft:

http://msdn.microsoft.com/en-us/vcsharp/aa336742.aspx

:-)

IrishChieftain