摘要:
enum枚举用于存储命名的和神奇的内容。一般在collection、if和switch中使用enum枚举。 Enum枚举: 思考一下,一个项目存储有代表性的花,花可能会有紫色的颜色,一个枚举可以代表各种颜色 这比string类型更加强大。 Enum枚举用法: 在C#程序中,我们必须以类似于类的方式来 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Drawing; 6 using System.Windows.Forms; 7 阅读全文