Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只需要一些建议,因为我是新手。有没有办法让这个更短?
Student.Classes.Enum.Enum.gender
只需要一种更聪明的方法来做到这一点。
您可以在导入中使用别名,如下所示:
using System; using System.Collections.Generic; using ShortAlias = Very.Long.Class.Name; class Test { private ShortAlias x; }
您应该阅读“使用”语句
IE
using Student.Classes.Enum.Enum;
将允许您使用
gender.Male