我在使用c#生成WPF应用程序的VS 2013 SAP Crystal Reports中遇到了问题。我使用以下代码收到以下错误:
CrpInvoice crInv = new CrpInvoice();
crInv.SetDataSource(_lstInvoice); //throwing error here
未处理的类型' System.StackOverflowException'发生在WindowsBase.dll
中
答案 0 :(得分:0)
Crystal Report是使用早期版本的.NET Framework开发的,您需要将这些行添加到app.config文件中:
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>