gpt4 book ai didi

c# - 错误CS0027 : Keyword 'this' is not available in the current context

转载 作者:行者123 更新时间:2023-12-01 16:45:01 31 4
gpt4 key购买 nike

我对构造函数进行了以下初始化:

public partial class WizardPage1 : WizardPage
{
public WizardPage1()
: base(0, getLocalizedString(this.GetType(), "PageTitle"))
{
}
}

哪里

public static string getLocalizedString(Type type, string strResID)
{
}

但是this.GetType()部分导致以下错误:

error CS0027: Keyword 'this' is not available in the current context

知道如何解决吗?

最佳答案

“this”关键字指的是该类的当前实例。在构造函数中,您无权访问该实例,因为您将要创建一个...因此请尝试以下操作:

public partial class WizardPage1 : WizardPage
{
public WizardPage1()
: base(0, getLocalizedString(typeof(WizardPage1), "PageTitle"))
{
}
}

关于c# - 错误CS0027 : Keyword 'this' is not available in the current context,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19018996/

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