资源简介
源码不完整,仅供参考
代码片段和文件信息
using Ourgame.Define;
using System;
public class Card
{
private int _ID = -1;
public int ID
{
get
{
return (this._ID < 0) ? 52 : this._ID;
}
set
{
this._ID = (value > 51) ? -1 : value;
this._Color = (value < 0 || value > 51) ? (int)PokerColor.UNKNOW : Convert.ToInt32(Math.Floor(Convert.ToDecimal(this._ID / 13)));
this._Point = (value < 0 || value > 51) ? (int)PokerPoint.UNKNOW : this._ID % 13;
}
}
private int _Color = (int)PokerColor.UNKNOW;
public int Color
{
get
{
return this._Color;
}
set
{
this._Color = value;
this._ID = (this._Color == (int)PokerColor.UNKNOW || this._Point == (int)PokerPoint.UNKNOW) ? -1 : this._Point + this._Color * 13;
}
}
private int _Point = (int)PokerPoint.UNKNOW;
public int Point
{
get
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2740 2017-11-24 14:43 Card.cs
文件 17970 2018-01-30 17:40 PatternAnalyzer.cs
----------- --------- ---------- ----- ----
20710 2
相关资源
- delta机器人运动学算法正向逆向求解
- “三打一”扑克牌游戏设计
- C#版24点扑克游戏源代码
- C#多元线性回归算法
- c# 扑克牌识别
- 拱猪扑克牌游戏C#源码
- C#实现封装SPC过程能力工具类ProcessC
- 国密SM4算法 C#
- C#写的扑克牌
- c# 模仿windows扑克游戏
- C#扑克牌游戏源代码
- TIN生成算法实现.zip
- 网络安全LSB算法 采用C# 实现文字的隐
- C#数字图像处理算法典型
- C#数值计算算法编程
- 《C#数值计算算法编程》电子书+随书
- 数据结构与算法C#
- c#四叉树算法实现
- A*逆向路径搜索算法C#代码以及地图文
- 武汉大学 C#数据结构与算法
- C#+ArcEngine面周边点抽稀源码
- 操作系统课设理发师问题,时间片轮
- 图像加密算法与实践
- C#数字图像处理算法典型赵春江随书源
- 数据结构与算法:C#语言描述(中文)
- C#数据结构与算法
- 校园导游图 C# floyd算法
- 数据结构与算法:C#语言描述(中文)
- 基于离散点的构TIN算法C#
- 平面度及平整度算法
评论
共有 条评论