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

    • <bdo id='VwX7D'></bdo><ul id='VwX7D'></ul>

  1. <legend id='VwX7D'><style id='VwX7D'><dir id='VwX7D'><q id='VwX7D'></q></dir></style></legend>
      <i id='VwX7D'><tr id='VwX7D'><dt id='VwX7D'><q id='VwX7D'><span id='VwX7D'><b id='VwX7D'><form id='VwX7D'><ins id='VwX7D'></ins><ul id='VwX7D'></ul><sub id='VwX7D'></sub></form><legend id='VwX7D'></legend><bdo id='VwX7D'><pre id='VwX7D'><center id='VwX7D'></center></pre></bdo></b><th id='VwX7D'></th></span></q></dt></tr></i><div id='VwX7D'><tfoot id='VwX7D'></tfoot><dl id='VwX7D'><fieldset id='VwX7D'></fieldset></dl></div>

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

    2. C#中的命名空间冲突

      Namespace conflict in C#(C#中的命名空间冲突)
    3. <legend id='xHkV4'><style id='xHkV4'><dir id='xHkV4'><q id='xHkV4'></q></dir></style></legend>

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

              <bdo id='xHkV4'></bdo><ul id='xHkV4'></ul>

                  <tbody id='xHkV4'></tbody>

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

                问题描述

                在我的程序命名空间中有一个 System 命名空间.结果,我无法从我的内部看到标准的 System 命名空间.我该如何解决这个问题?

                There is a System namespace inside my program's namespace. And as a result I can't see the standard System namespace from within mine. How can I resolve this problem?

                例如,在 C++ 中,有一个 :: 运算符将我转移"出我的命名空间,因此我可以看到与当前命名空间同名的外部命名空间:

                For example in C++ there is the :: operator which 'shifts' me out of my namespace, so I can see external namespaces with the same name as my current namespace:

                C#中有类似的运算符吗?

                Is there a similar operator in C#?

                推荐答案

                您需要使用 global 关键字.这迫使命名空间解析从最顶部开始.它主要用于生成的代码中,以双重确保引用了正确的命名空间.

                You need to use the global keyword. That forces the namespace resolution to start at the very top. It's mostly used in generated code to be doubly sure the right namespace is referenced.

                 global::System.Foo.Bar;
                

                关于它的一些 MSDN 文档:http://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx

                Some MSDN documentation on it: http://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx

                这篇关于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 的日期时间字段溢出)
                IBM .NET Data Provider Connection String issue with Library List(库列表的 IBM .NET 数据提供程序连接字符串问题)

                  <legend id='BBjSH'><style id='BBjSH'><dir id='BBjSH'><q id='BBjSH'></q></dir></style></legend>

                  <tfoot id='BBjSH'></tfoot>
                        <bdo id='BBjSH'></bdo><ul id='BBjSH'></ul>
                          <tbody id='BBjSH'></tbody>
                      • <small id='BBjSH'></small><noframes id='BBjSH'>

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