本文介绍了宣告全球可变的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们应该在其中声明要在整个项目中使用的变量.

where we should we declare the variable that is to be used in whole project.

推荐答案

public static class Globals
   {
   public static string globalString = "hello";
   }

您可以使用它:

string s = Globals.globalString;


但是,您实际上很少需要它.
您想做什么,以为您只能与全球性公司合作?

[edit]添加了使用示例-OriginalGriff [/edit]


However, it is pretty rare that you actually should need this.
What are you trying to do that you think you can only do with a global?

[edit]Added use example - OriginalGriff[/edit]




这篇关于宣告全球可变的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 11:53