gpt4 book ai didi

c# - 如何将参数传递给C#类?

转载 作者:太空狗 更新时间:2023-10-29 22:32:20 27 4
gpt4 key购买 nike

我有如下代码

public  class LocalDB
{
public static int e_SessionID;

public static string e_EventName;

public static string e_TimeCreate;
}

在其他类(class):

public static LocalDB newEvent ;
public void something()
{
newEvent.e_SessionID=123;
}

但它是不能传值的。

最佳答案

问题:您正在尝试使用实例引用变量 newEvent 访问静态字段,如下所示:

newEvent.e_SessionID=123;
//^^^Here

解决方案:您需要使用classname 来访问static 字段

newEvent.e_SessionID=123;
//^^^Replace with classname LocalDB here

替换这个:

 newEvent.e_SessionID = 123;

有了这个:

LocalDB.e_SessionID = 123;

关于c# - 如何将参数传递给C#类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22450135/

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