shapeattribute.cs
来自「.net的数据持久层」· CS 代码 · 共 22 行
CS
22 行
using System;
namespace Platform.Data
{
/// <summary>
/// ShapeAttribute 的摘要说明。
/// </summary>
public class ShapeAttribute :Attribute
{
private enumShapeType _Type;
public ShapeAttribute (enumShapeType pType)
{
_Type = pType;
}
public enumShapeType Type
{
get{return _Type;}
set{_Type = value;}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?