当 dotpeek 用“//存根方法(仅 'ret' 指令)”填充方法时,这是什么意思

What does it mean when dotpeek fills a method with "// Stub method ('ret' instruction only)"

我偶然发现这个 question 询问 linq 的聚合算法,并认为这是逆向工程最好回答的问题,所以我去了 Visual Studio 并编写了以下代码 (此代码旨在用于 Combine 函数只能有两个参数的 Compact 框架项目):

    public static string Combine(string path1, params string[] paths)
    {
        return paths.Aggregate(path1, System.IO.Path.Combine);
    }

然后我将光标设置到Aggregate方法,按F12键(我安装了Resharper),然后被引导到以下代码:

// Decompiled with JetBrains decompiler
// Type: System.Linq.Enumerable
// Assembly: System.Core, Version=3.9.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac, Retargetable=Yes
// MVID: 77D23A6E-E19D-435B-9CBB-733D74F92072
// Assembly location: C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\WindowsEmbeddedCompact\v3.9\System.Core.dll

Lots of stuff...

public static TAccumulate Aggregate<TSource, TAccumulate>(this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func)
{
  // Stub method ('ret' instruction only)
}

很明显,这不是我调用 Aggregate 时运行的代码,因为...Aggregate 做了一些事情。问题是反编译器的结果到底是什么意思?什么是对 "Aggregate" 方法进行逆向工程的合适方法?

--编辑--

我刚刚意识到我上面所说的只有在 Compact Framework 项目中完成时才是正确的,当我反编译标准框架的 Aggregate 时,我得到了正确的源代码。

如果你想反编译 CF 程序集,你必须使用实际的 BCL,而不是通常在 Studio 中用作参考的存根(不,我不知道他们为什么这样做)。我看到你使用的是 3.9,所以我不确定你需要查看的路径,但是对于 3.5,你可以在这里找到它们:

C:\Program Files (x86)\Microsoft.NET\SDK\CompactFramework\v3.5\Debugger\BCL