gpt4 book ai didi

c# - 有没有办法从静态方法调用非静态方法?

转载 作者:太空狗 更新时间:2023-10-29 23:54:30 28 4
gpt4 key购买 nike

这是我的。

public static void Person_home_phone_TextChanged(object sender, EventArgs e) { ... }

有没有办法从这个静态方法内部访问同一个类或另一个类的非静态方法?

我需要获取 Person_home_phone 文本框中的文本并将其保存到类数据成员中。

最佳答案

示例() -> 示例

您只需要创建 type 的实例,然后从 static 方法调用 non-static

public class Example(){

public static void StaticExample()
{

Example example = new Example();
example.NonStatic();
}

public void NonStatic()
{

}

}

关于c# - 有没有办法从静态方法调用非静态方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15905248/

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