unmanagedresources Questions
4
Solved
I'm trying to get SBT to build a project that could have more than one unmanaged directory. If I had a single directory, I could easily do it like this:
unmanagedBase := file( "custom-libs" ).getA...
Aubrey asked 19/2, 2012 at 3:41
0
I have a WPF application, which sometimes is exiting with an exit code of -1073740771. The issue is not occurring in any pattern and it's varying from system to system. In some system the issue is ...
Caracaraballo asked 13/3, 2015 at 12:7
7
I had a discussion with my friend about managed and unmanaged resources in c#.
According to my friend:
1.a) Every object in C# is managed and there is nothing like unmanaged object or resource wh...
Unshaped asked 17/6, 2011 at 8:37
3
Solved
I am using some unmanaged code like-
[DllImport("wininet.dll")]
private extern static bool InternetGetConnectedState(out int Description, int ReservedValue);
//Creating a function that uses the...
Lillalillard asked 18/1, 2011 at 8:28
2
Solved
I have the following block of code:
IntPtr unmanagedPointer = Marshal.AllocHGlobal(buffer.Length);
Marshal.Copy(buffer, 0, unmanagedPointer, buffer.Length);
SomeCommandThatCanThrowAnException();
M...
Grader asked 19/8, 2010 at 20:29
4
Solved
I have a class (say MyClass) that uses (has as a private field) a TcpClient object. MyClass implements IDisposable calling TcpClient.Close in the Dispose method.
My question is should MyClass als...
Selmore asked 12/2, 2009 at 15:27
1
© 2022 - 2024 — McMap. All rights reserved.