Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
8answers
3k 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? Just for the record, ...
13
votes
15answers
2k views

What exactly is “managed” code?

I've been writing C / C++ code for almost twenty years, and I know perl, python, php, and some java as well, and I'm teaching myself javascript. But I've never done any .NET, VB, or C# stuff. What ...
11
votes
9answers
807 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 much performance ...
10
votes
6answers
892 views

The speed of .NET in numerical computing

In my experience, .net is 2 to 3 times slower than native code. (I implemented L-BFGS for multivariate optimization). I have traced the ads on stackoverflow to http://www.centerspace.net/products/ ...
8
votes
6answers
497 views

Should a WPF application be written in C++ or C#?

WPF applications are, at its core, managed applications? Right? So, I have to choose between using managed C++ or managed C#. I experimented with managed C++ years ago. It seemed to be not quite ...
7
votes
17answers
946 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 around for quite some ...
6
votes
6answers
309 views

.NET code compilation or complication?

Q1) Why is C# initially compiled to IL and then at runtime JIT complied and run on top of a virtual machine(?). Or is it JIT complied to native machine code? Q2) If the second is true (JIT complied ...
6
votes
3answers
289 views

My application is unmanaged. Where do I start introducing managed code?

My whole application (which is rather big, with a 20MB executable) is written in unmanaged C++. Because I can clearly see the advantages in using managed code, I want to start introducing managed code ...
5
votes
4answers
109 views

Avoiding branches in managed languages

In C, when compiled to a x86 machine, I would usually replace branches with logical expression, when speed is the most important aspect, even if the conditions are complex, for example, instead of ...
5
votes
7answers
756 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 some situations ...
4
votes
2answers
905 views

Remote debugging accross domains

I have two machines in two different domanins. On both I have VS 2005 installed. I want remote debug between them. Without autentication it is possible but I want to debug managed code. I don't want ...
3
votes
6answers
185 views

Why don't managed languages offer the ability to manually delete objects?

Lets say you want to write a high performance method which processes a large data set. Why shouldn't developers have the ability to turn on manual memory management instead of being forced to move to ...
2
votes
1answer
335 views

Converting Luabind to C#?

Has anybody tried converting Luabind to C#? Is such a thing even possible? I've got an application that I want to convert so that it can run in a completely managed environment, but most of the game ...
2
votes
1answer
614 views

How do I avoid the loader lock?

We have a managed app, that uses an assembly. That assembly uses some unmanaged C++ code. The Managed C++ code is in a dll, that depends on several other dlls. All of those Dlls are loaded by this ...
2
votes
1answer
394 views

Export c++ functions inside a C# Application

Greetings, I am sorry for bothering, I'll show the question: I am trying to export some functions written in c++ in a DLL in order to import them in a C# Application running on Visual Studio. I make ...
2
votes
1answer
7k 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 non-null value. ...
2
votes
1answer
323 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 be seen in the ...
1
vote
1answer
74 views

Debugging tool for managed code

I am new to C# and wondering whether "windbg" or "Visual Studio Debugger" would be better tool for debugging managed code? For the past couple of years, I have been doing development in C++ and I am ...
1
vote
1answer
90 views

managed and unmanaged

if a .net dll contains both managed and unmanaged code , how does the code will be converted to CIL and how CLR allocate and manages the memory
1
vote
2answers
309 views

Is there a native .NET method or equivalent to user32.dll's GetKeyboardState?

ANSWER: There isn't a natively managed equivalent for this method. However, a good example managed code API can be found over at pinvoke.net. Hi all I have an application that accepts a flag for ...
1
vote
6answers
419 views

Is there a common practice how to make freeing memory for Garbage Collector easier in .NET?

I've been thinking if there's a way how to speed up freeing memory in .NET. I'm creating a game in .NET (only managed code) where no significant graphics is needed but still I would like to write it ...
1
vote
3answers
260 views

Why does the .NET framework not include USB tools [closed]

I am wondering why the .NET framework does not provide any managed methods for working with USB drivers. From everything I have read you still have to call into Windows API's and use marshalling and ...
1
vote
1answer
205 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 I interact with ...
1
vote
3answers
233 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 there any libraries for ...
1
vote
2answers
282 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 sure there must be ...
1
vote
1answer
135 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 only option. Are ...
0
votes
1answer
26 views

MarshalAs Query With Managed Code Calling Unmanaged

This question is a result of this thread. My question is, why do we have to specify the MarshalAs attribute for some of the parameters but not others? I would have thought the differences between c++ ...
0
votes
0answers
59 views

Is it possible to create a user-defined table type via managed code?

The reason I'm asking, is I'd like to pass a table type to a function, which is also defined in code. It's not possible to pass a type defined in SQL to such a function, so I thought it might be ...
0
votes
0answers
126 views

Click event outside of a form using managed code (If Possible)

Could someone please advise if it is possible to handle MouseClick events generated outside of your form using managed code? If not is this (http://www.codeproject.com/KB/cs/globalhook.aspx) the ...
0
votes
1answer
344 views

Running managed code in SQL Server 2008 - any issues?

I would like to know the performance issues associated with running managed code through SQL Server 2008. I've heard about some memory and speed issues. Specifically, I want to implement a SHA256 ...
0
votes
1answer
239 views

Invoking method (from .net managed dll) from a SQL Stored procedure - Help

We wanted to call a .NET Managed code (deployed as dll) from a Stored Procedure in (SQL Server 2005/2008) We found couple of solutions, but couldn't get it working: Following steps mentioned in the ...
0
votes
1answer
46 views

how do you suppress a direct call to a managed method?

I want to know if this is inherently possible: Think of a cloud scenario. I allow users to upload their .net code onto my server. However to manage things on my server I can't allow users to write ...
0
votes
2answers
620 views

WinDbg — debugging mixed x64 managed/unmanaged code

I'm using WinDbg (Native x64 -- NOT Itanium) to debug an x64 (unmanaged) application that loads both managed an unmanaged DLLs. I'm trying to set a breakpoint in one of the unmanaged DLLs. When the ...
0
votes
1answer
265 views

Check managed assembly version on an SQL Server database

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 assembly. Any ideas? Thanks. ...
0
votes
1answer
135 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 to allow smooth ...
0
votes
5answers
236 views

How do I check if my solution has unmanaged code?

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 objective is to host the entire ...
-1
votes
6answers
513 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 free() memory for me ...
-2
votes
2answers
66 views

is managed code really necessary [closed]

I'm just wondering what are the really advantages of managed langage over native code portability: C#/Jave need to have a VM implementation for each plateforms, c++ has to have a compiler garbage ...
-2
votes
4answers
468 views

Call C# dll from Delphi

I composed .Net 3.5 dll with single method, which is to be called by Delphi .exe. Unfortunately it does not work. The steps: 1. Create C# 3.5 dll with the code: public class MyDllClass { public ...