• <i id='pWaqS'><tr id='pWaqS'><dt id='pWaqS'><q id='pWaqS'><span id='pWaqS'><b id='pWaqS'><form id='pWaqS'><ins id='pWaqS'></ins><ul id='pWaqS'></ul><sub id='pWaqS'></sub></form><legend id='pWaqS'></legend><bdo id='pWaqS'><pre id='pWaqS'><center id='pWaqS'></center></pre></bdo></b><th id='pWaqS'></th></span></q></dt></tr></i><div id='pWaqS'><tfoot id='pWaqS'></tfoot><dl id='pWaqS'><fieldset id='pWaqS'></fieldset></dl></div>

      <bdo id='pWaqS'></bdo><ul id='pWaqS'></ul>
    <legend id='pWaqS'><style id='pWaqS'><dir id='pWaqS'><q id='pWaqS'></q></dir></style></legend>

        <small id='pWaqS'></small><noframes id='pWaqS'>

      1. <tfoot id='pWaqS'></tfoot>
      2. 在 C# 中显式引用没有命名空间的类

        explicitly refer to a class without a namespace in C#(在 C# 中显式引用没有命名空间的类)
      3. <tfoot id='7gTc2'></tfoot>
        • <bdo id='7gTc2'></bdo><ul id='7gTc2'></ul>

            <legend id='7gTc2'><style id='7gTc2'><dir id='7gTc2'><q id='7gTc2'></q></dir></style></legend>
              <tbody id='7gTc2'></tbody>

            • <small id='7gTc2'></small><noframes id='7gTc2'>

              • <i id='7gTc2'><tr id='7gTc2'><dt id='7gTc2'><q id='7gTc2'><span id='7gTc2'><b id='7gTc2'><form id='7gTc2'><ins id='7gTc2'></ins><ul id='7gTc2'></ul><sub id='7gTc2'></sub></form><legend id='7gTc2'></legend><bdo id='7gTc2'><pre id='7gTc2'><center id='7gTc2'></center></pre></bdo></b><th id='7gTc2'></th></span></q></dt></tr></i><div id='7gTc2'><tfoot id='7gTc2'></tfoot><dl id='7gTc2'><fieldset id='7gTc2'></fieldset></dl></div>

                  本文介绍了在 C# 中显式引用没有命名空间的类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用的代码有一个名为 Environment 的类,它不在任何命名空间中.不幸的是,如果我在一个导入 System 命名空间的类中,则无法引用名为 Environment 的自定义类.我知道这是一个不幸的选择,应该重构,但是有什么方法可以明确地引用冲突的类吗?

                  The code I'm working with has a class called Environment that is not in any namespace. Unfortunately if I am in a class that imports the System namespace, there is no way to refer to the custom class called Environment. I know this was an unfortunate choice and should be refactored, but is there any way I can explicitly refer to the conflicting class?

                  在 C++ 中,执行此操作的方法似乎是使用 ::,而在 Java 中,有一种称为 global:: 的方法在 C# 中如何实现?

                  In C++ it seems the way to do this is by using ::, and in Java there is something called global:: How do I do it in C#?

                  推荐答案

                  C# 也有一个全局(或未命名的)命名空间 - 你可以使用 global:: 来访问你的类:

                  C# also has a global (or unnamed) namespace - you can use global:: to access your class:

                  global::Environment 
                  

                  在 MSDN 上查看更多信息.另请参阅 :: 运算符.

                  See more on MSDN. Also see the :: operator.

                  您也可以为其创建别名:

                  You can create an alias for it as well:

                  using myEnv = global::Environment;
                  using sysEnv = System.Environment;
                  

                  这篇关于在 C# 中显式引用没有命名空间的类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  C# namespace alias - what#39;s the point?(C# 命名空间别名 - 有什么意义?)
                  Using Xpath With Default Namespace in C#(在 C# 中使用具有默认命名空间的 Xpath)
                  IBM.Data.DB2.Core connection problems(IBM.Data.DB2.Core 连接问题)
                  Generating an EDMX from a DB2 Database(从 DB2 数据库生成 EDMX)
                  Datetime field overflow with IBM Data Server Client v9.7fp5(IBM Data Server Client v9.7fp5 的日期时间字段溢出)
                  Using entity Framework with .NET Core and DB2(将实体框架与 .NET Core 和 DB2 结合使用)
                1. <legend id='BlGPI'><style id='BlGPI'><dir id='BlGPI'><q id='BlGPI'></q></dir></style></legend>
                  <i id='BlGPI'><tr id='BlGPI'><dt id='BlGPI'><q id='BlGPI'><span id='BlGPI'><b id='BlGPI'><form id='BlGPI'><ins id='BlGPI'></ins><ul id='BlGPI'></ul><sub id='BlGPI'></sub></form><legend id='BlGPI'></legend><bdo id='BlGPI'><pre id='BlGPI'><center id='BlGPI'></center></pre></bdo></b><th id='BlGPI'></th></span></q></dt></tr></i><div id='BlGPI'><tfoot id='BlGPI'></tfoot><dl id='BlGPI'><fieldset id='BlGPI'></fieldset></dl></div>

                    <small id='BlGPI'></small><noframes id='BlGPI'>

                        <bdo id='BlGPI'></bdo><ul id='BlGPI'></ul>
                          <tbody id='BlGPI'></tbody>

                          1. <tfoot id='BlGPI'></tfoot>