1

Resharper 可以创建委托成员(Alt + Ins)

但是什么是委派成员?

我所做的大多数搜索都提出了无用的美国政治。

4

1 回答 1

6

委托方法只是直接通过某些包含对象的方法。

例如:

class MyClass
{
    private SomeType innerObj = new SomeType();
    public Bar GetFoo()
    {
        return innerObj.GetFoo();
    }

}
于 2013-03-21T10:37:35.070 回答