記從 dotnet framework 4.8 升級到 4.8.1 時執行的 dotnet remoting 程式出現空異常

lindexi發表於2024-11-05

錯誤堆疊如下

System.NullReferenceException:“Object reference not set to an instance of an object.”
   在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
System.NullReferenceException:“Object reference not set to an instance of an object.”
   在 System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
   在 System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)

具體原因未知,預計是版本之間的相容性問題,導致某些邏輯/程序跑了不同的 .NET Framework 版本。而多個 .NET Framework 版本沒有做好執行時相容性

相關文章