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

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

      1. <legend id='BgsN9'><style id='BgsN9'><dir id='BgsN9'><q id='BgsN9'></q></dir></style></legend>
      2. <small id='BgsN9'></small><noframes id='BgsN9'>

        <tfoot id='BgsN9'></tfoot>

        如何将命名空间检索到字符串 C#

        时间:2023-09-16
            <legend id='gMRo9'><style id='gMRo9'><dir id='gMRo9'><q id='gMRo9'></q></dir></style></legend>
              <tbody id='gMRo9'></tbody>

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

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

                  <tfoot id='gMRo9'></tfoot>
                  <i id='gMRo9'><tr id='gMRo9'><dt id='gMRo9'><q id='gMRo9'><span id='gMRo9'><b id='gMRo9'><form id='gMRo9'><ins id='gMRo9'></ins><ul id='gMRo9'></ul><sub id='gMRo9'></sub></form><legend id='gMRo9'></legend><bdo id='gMRo9'><pre id='gMRo9'><center id='gMRo9'></center></pre></bdo></b><th id='gMRo9'></th></span></q></dt></tr></i><div id='gMRo9'><tfoot id='gMRo9'></tfoot><dl id='gMRo9'><fieldset id='gMRo9'></fieldset></dl></div>
                  本文介绍了如何将命名空间检索到字符串 C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在编写一个需要程序名称空间的程序,但我似乎不知道如何检索它.我希望最终结果是一个字符串.

                  I am writing a program which needs the namespace of the program but I cant seem to figure out how to retrieve it. I would like the end result to be in a string.

                  我能够找到有关此主题的 MSDN 页面,但事实证明它对我自己没有帮助.http://msdn.microsoft.com/en-us/library/system.type.命名空间.aspx

                  I was able to find an MSDN page about this topic but it proved to be unhelpful to myself. http://msdn.microsoft.com/en-us/library/system.type.namespace.aspx

                  任何帮助将不胜感激.该程序是用 C# 编写的.

                  Any help would be appreciated. The program is written in C#.

                  对不起,这不是控制台应用程序.

                  Sorry guys, this is not a console application.

                  推荐答案

                  这应该可行:

                  var myType = typeof(MyClass);
                  var n = myType.Namespace;
                  

                  写出到控制台:

                  Type myType = typeof(MyClass);
                  Console.WriteLine("Namespace: {0}.", myType.Namespace);
                  

                  设置 WinForm 标签:

                  Setting a WinForm label:

                  Type myType = typeof(MyClass);
                  namespaceLabel.Text = myType.Namespace;
                  

                  或者在相关类中创建一个方法并在任何地方使用:

                  Or create a method in the relevant class and use anywhere:

                  public string GetThisNamespace()
                  {
                     return GetType().Namespace;
                  }
                  

                  这篇关于如何将命名空间检索到字符串 C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:C# 命名空间和程序集最佳实践 下一篇:为什么没有正确找到我的 App_Code 文件夹中子文件夹中的类?

                  相关文章

                • <tfoot id='Knv3W'></tfoot>

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

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

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