C#等效于Java中的通配符导入 [英] C# equivalent to wildcard imports in Java

查看:85
本文介绍了C#等效于Java中的通配符导入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

C#中是否有一种方法可以将名称空间中的所有内容都导入到Java中,就像Java中的通配符一样?

Is there a way in C# to import everything inside a namespace like there is in Java with the wildcard character?

import java.awt.*;

推荐答案

这是常规using指令的作用.例如:

That's what the normal using directive does. For instance:

using System;

表示您可以无限制地使用Console,Guid,Int32等.与Java中单个导入最接近的等效项是:

means you can use Console, Guid, Int32 etc without qualification. The closest equivalent to the single import in Java is:

using Console = System.Console;

(等)

但这并不经常使用.

这篇关于C#等效于Java中的通配符导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆