gpt4 book ai didi

c# - 使用 ReSharper 将扩展方法转换为实例方法?

转载 作者:太空狗 更新时间:2023-10-29 23:20:59 26 4
gpt4 key购买 nike

假设我有一个类:

public class Foo
{
public int Bar { get; set; }
}

还有一个扩展方法:

public static class FooExtensions
{
public static void DoSomething(this Foo foo, int someNumber)
{
foo.Bar += someNumber;
}
}

什么是删除 FooExtensions 类并更改 Foo 使其变为:

public class Foo
{
public int Bar { get; set; }

public void DoSomething(int someNumber)
{
Bar += someNumber;
}
}

ReSharper 似乎没有提供一步操作来执行此操作(奇怪的是,这似乎是一个非常简单的重构),但我可以结合哪些其他操作来避免过多的复制/粘贴和手动工作?

最佳答案

显然, 有一个用于此的 ReSharper 操作,但它的命名有点尴尬(恕我直言)。它称为“使方法非静态”。

可以找到文档here .请注意,它没有具体提及扩展方法。

相同的重构将适用于其他类型的静态方法(非扩展),这可能解释了命名。

关于c# - 使用 ReSharper 将扩展方法转换为实例方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37660877/

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