首页 > 学院 > 开发设计 > 正文

c# using 引用和别名的使用

2019-11-17 02:32:35
字体:
来源:转载
供稿:网友

c# using 引用和别名的使用

1.使用别名

在同时引用的两个命名空间中有相同的类型时,可以使用别名来区分。如下所示:

using System;

using System.Threading;

using System.Timers;

其中在第二个和第三个引入的命名空间中有相同的Timer名字,这样可以使用using CountDownTimer=System.Timers.Timer;来为其中一个起一个别名来避免重名。也可以将别名设定为Timer。

using Timer=System.Timers.Timer;

class HelloWorld

{static void Main()

{ Timer timer;}}

现在使用Timer便没有歧义,如果再引用System.Threading.Timer类需要完全限定或者定义不同的别名。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表