我定期得到以下异常:
Unable to load DLL 'SQLite.Interop.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
我使用的是1.0.82.0.版本,在VS2010,OS Win7 64中使用nuget进行安装.
一旦异常开始出现,它就会不断出现 - 在VS内部或外部的调试和发布以及运行应用程序.
停止它的唯一方法是注销和登录.不抛出异常并加载dll.它可以工作几天,但它可以再次破坏.
有没有人见过这样的东西,有没有解决方案呢?
(byte)VB.NET中的等价物是什么:
uint value = 1161;
byte data = (byte)value;
Run Code Online (Sandbox Code Playgroud)
data = 137
Dim value As UInteger = 1161
Dim data1 As Byte = CType(value, Byte)
Dim data2 As Byte = CByte(value)
Run Code Online (Sandbox Code Playgroud)
例外:算术运算导致溢出.
如何在C#中获得相同的结果?