0
votes
1answer
23 views
Check managed assembly version on an SQL Server database
Hello,
I need to find out the version of an assembly deployed to an SQL Server database.
I need to do it via script or other programmatic way to know if i need to redeploy the asse …
0
votes
1answer
39 views
Deploy unsafe sql server 2005 assembly to production
Hey,
I'm new to SQL Server development and I need to deploy an unsafe UDF assembly to a 2005 server.
I'm using C# and VS2008.
I need to know what are the steps that i need to take …
2
votes
1answer
1k views
Convert IntPtr to int* in C#?
I have a C++ DLL returning an int* to a C# program. The problem is the int* in C# remains null after the assignment.
When I assign the C++ result to an IntPtr, I get a correct no …
1
vote
0answers
54 views
Creating a bounding box for windows mobile camera
I am trying to creating a bounding box for a windows mobile device application.I honestly have no idea where to start looking. I am currently using the CameraCaptureDialog Class to …
1
vote
1answer
53 views
Managed code in WinPE
If I want to run a program in windows PE (Vista or 7) am I not allowed to use any level of managed code?
Can I only have c++ code that doesn't reference any dotNet code?
How can …
-1
votes
5answers
236 views
Are there any managed programming languages that compile to machine code?
Managed languages being the ones that handle memory cleanup for you.
EDIT I'm not talking about garbage collection. I was just interested in knowing about languages that would fre …
0
votes
5answers
137 views
How do I check if my solution has unmanaged code ?
Hi,
We have a number of people working on a project. Is there any tool that will scan and check my entire solution if it has any unmanaged code or non-typesafe code ?
The objecti …
0
votes
3answers
138 views
Tree Structures
What are the benefits or advantages to using a tree structure in a managed language or framework over flat structures provided by said language or framework, aka .NET, and are ther …
11
votes
9answers
568 views
What advantages are there to developing a Win32 app in C++ over a .NET app in C#?
I learned windows programming using Visual C++, and the Win32 API. Nowadays, it seems most apps are being developed in .NET using C#. I understand that most of the time there isn't …
4
votes
7answers
322 views
Why does C++ need language modifications to be “managed”?
Why can't a compiler be written that manages what needs to be managed in C++ code (i.e. to make it "CLR compatible")?
Maybe with some compromise, like prohibiting void pointers in …
7
votes
16answers
748 views
Why wasn’t code “managed” from the start?
Note that this is not about the .NET CLR that Microsoft is thrusting into the atmosphere to evangelize the concept of managed code. Most of you know that managed code has been arou …
0
votes
2answers
159 views
Which languages compile to CIL / MSIL
Most of the lists I have seen comprise:
C#
VB.Net
Other .NET language
What languages fall into the "Other" category?
I've come across:
Delphi
C++
Cobol.Net
Chrome
I'm sur …
0
votes
1answer
84 views
Is managed code is the only way to use SMO in c++???
I have to work with SQLSERVER SMO in C++. Is Managed code is the only way to work with SQLSERVER SMO in C++ ?
I have tried many ways.. but I found that using managed code is the o …
11
votes
8answers
1k views
Invoke Blue Screen of Death using Managed Code
Just curious here: is it possible to invoke a Windows Blue Screen of Death using .net managed code under Windows XP/Vista? And if it is possible, what could the example code be?
J …
0
votes
2answers
137 views
Debugging managed code: Viewing return value
On Win32, with unmanaged code, the return value is usually stored in the EAX register. This is useful when the program doesn't save the return value in a variable. This can easily …
