1 Star 0 Fork 0

微距离/pythonnet

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
enumtest.cs 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
using System;
namespace Python.Test
{
/// <summary>
/// Supports CLR enum unit tests.
/// </summary>
public enum ByteEnum : byte
{
Zero,
One,
Two,
Three,
Four,
Five
}
public enum SByteEnum : sbyte
{
Zero,
One,
Two,
Three,
Four,
Five
}
public enum ShortEnum : short
{
Zero,
One,
Two,
Three,
Four,
Five
}
public enum UShortEnum : ushort
{
Zero,
One,
Two,
Three,
Four,
Five
}
public enum IntEnum : int
{
Zero,
One,
Two,
Three,
Four,
Five
}
public enum UIntEnum : uint
{
Zero,
One,
Two,
Three,
Four,
Five
}
public enum LongEnum : long
{
Zero,
One,
Two,
Three,
Four,
Five,
Max = long.MaxValue,
Min = long.MinValue,
}
public enum ULongEnum : ulong
{
Zero,
One,
Two,
Three,
Four,
Five,
Max = ulong.MaxValue,
}
[Flags]
public enum FlagsEnum
{
Zero,
One,
Two,
Three,
Four,
Five
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/MicroDistanceStudio/pythonnet.git
git@gitee.com:MicroDistanceStudio/pythonnet.git
MicroDistanceStudio
pythonnet
pythonnet
master

搜索帮助