C# Poker Libraries [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this questionI'm building a simple poker website for a demo. Anyone know where I can find a set of classes encapsulating card, deck, hand etc. ?
Google is not being very helpful, (most links are to codeproject which is down until 1pm EST - I'm in Ireland).
Thanks!
Codeproject is currently down for me too, but in my implementation of Texas Hold'em I used this library for representing the hands, as well as evaluating which player has the best hand (a pretty tricky task). It worked out great for me.
Take a look of a C# library I am working on:
https://github.com/NikolayIT/TexasHoldemGameEngine
It contains all you need: Cards, Deck, Shuffle, Hand, Players, Game Engine, Hand Evaluation and Unit Tests.
精彩评论