如何创建System Constants类的别名
本文关键字:Constants 别名 System 何创建 创建 | 更新日期: 2023-09-27 17:57:35
IDE:C#.net,winforms VS 2010
我有一个类SystemConstants.cs
如下所示:
public class SystemConstants
{
//String Constants
public const string Hello = "Hello";
public const string Youth = "Youth";
}
并且有Form1.cs
现在是form1.cs
txtbox1.text = SystemConstants.Hello;
txtbox2.text = SystemConstants.Youth;
现在我想知道有没有什么原因不写
SystemConstants.Hello; //I want to avoid writing class name or I want to use alias for class name
Like this SystemConstants alias sc;
txtbox1.text = sc.Hello;
当然;可以使用using-alias指令。将其添加到Form1.cs文件的顶部:
using Sc = MyNamespace.SystemConstants;
您可以通过在顶部写入类别名来实现这一点:
using sc = SystemConstants;
如果SystemConstants
不在Form1
的命名空间中,则需要在类名之前写入命名空间名称:
using sc = YourNamespace.SystemConstants;