gpt4 book ai didi

C# - Winforms - 全局变量

转载 作者:IT王子 更新时间:2023-10-29 04:19:54 25 4
gpt4 key购买 nike

我希望一些变量在整个项目中是全局的,并且可以在任何形式下访问。我该怎么做?

最佳答案

是的,您可以使用静态类。像这样:

static class Global
{
private static string _globalVar = "";

public static string GlobalVar
{
get { return _globalVar; }
set { _globalVar = value; }
}
}

以及使用任何你可以写的地方:

GlobalClass.GlobalVar = "any string value"

关于C# - Winforms - 全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1293926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com