我有一些C#代码可以在mono和Microsoft的.net编译器下编译,但只能在单声道上运行。 错误消息是(我添加的换行符)
Unhandled Exception: System.TypeLoadException:
Could not load type 'Hasse.Groups.Heavy.Product.PowerGroup`1'
from assembly 'Hasse, Version=1.0.x.y, Culture=neutral, PublicKeyToken=null'
because it has recursive generic definition.
该类型实际上具有递归通用定义,所以我的问题是:为什么它与单声道一起工作? [代码运行并产生预期结果]
完整的源代码在这里:https://github.com/miniBill/Hasse
仍然崩溃的简化代码在这里:
public class Group<T> : IWrappableGroup<WrapperGroup<T>> {}
public class WrapperElement<T> {}
public interface IWrappableGroup<U> {}
public class WrapperGroup<T> : Group<WrapperElement<T>> {}
class MainClass {
public static void Main(string[] args){
var ng = new Group<object>();
}
}
以下证明它适用于单声道:http://ideone.com/ZvA3I
答案 0 :(得分:6)
这是一个known问题。它可能被报告为编译器错误。
http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-335.pdf(第129页)
至于在Mono工作,就规格而言,有几个地方Mono的工作被“打破”。
(Recursive lambdas是另一种在Mono中有效的东西,不应该这样做)