The managed-code tag has no wiki summary.
0
votes
1answer
149 views
Call native Delphi code from C# [closed]
Are there any best practices to call native C++ or Delphi Dlls from C# (ASP.NET)? Is invoking or a COM interop the best way to access those Dlls?
0
votes
0answers
109 views
WPF and Aforge.UnmanagedImage - showing a bitmap
I'm writing a WPF-application, and I'm getting UnmanagedImage-objects (coming from Aforge; my entire application is in written in C#). Now I want to display those pictures/bitmaps on my GUI, possible ...
1
vote
1answer
193 views
Could this C++ project be decompiled with such tools like a .NET Reflector?
I use Microsoft Visual Studio 2012 and I want to write an application in native C++. Reason why I don't want to use Manged Code (.NET) because I don't want that my application was decompiled back to ...
0
votes
1answer
516 views
VB.NET Socket Exception only while Debugging
I have recently encountered some rather baffling behavior while up-converting a VB.NET solution from VS2005 to VS2010. For reference, the solution targets .NET 2.0 and was running without error in ...
0
votes
1answer
84 views
How to use code from native dll non-statically in vb.net?
My question is more on the concept and less on the actual code.
I have an app in vb.net. I want to port a few classes to native c++ code (not cli) for various reasons. What I want to do is to be able ...
3
votes
1answer
409 views
Native code in C#?
I was watching the Microsoft build conference from October last year and I noticed they announced that for building the new Metro style apps, developers can write native code in C#. How is this ...
0
votes
1answer
54 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++ ...
6
votes
4answers
179 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
...
-2
votes
2answers
106 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 ...
1
vote
1answer
311 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 ...
-2
votes
4answers
5k 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 ...
2
votes
1answer
133 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
8
votes
6answers
1k 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 ...
0
votes
1answer
828 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 ...
2
votes
2answers
527 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
642 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 ...
0
votes
1answer
724 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 ...
2
votes
1answer
577 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
1k 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 ...
3
votes
3answers
321 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 ...
7
votes
6answers
639 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 ...
0
votes
1answer
52 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 ...
2
votes
1answer
561 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 ...
0
votes
2answers
860 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 ...
6
votes
3answers
337 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 ...
3
votes
6answers
212 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 ...
10
votes
7answers
2k 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/
...
0
votes
1answer
656 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
256 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 ...
1
vote
1answer
309 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 ...
0
votes
6answers
781 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 ...
1
vote
4answers
357 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
vote
3answers
316 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 ...
2
votes
1answer
9k 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. ...
5
votes
8answers
1k 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 ...
7
votes
16answers
972 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 ...
1
vote
2answers
395 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
180 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 ...
14
votes
9answers
1k 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 ...
2
votes
1answer
412 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 ...
17
votes
9answers
4k 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, ...
17
votes
15answers
4k 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 ...
4
votes
2answers
1k views
Remote debugging across domains
I have two machines in two different domains. On both I have VS 2005 installed. I want remote debug between them. Without authentication it is possible but I want to debug managed code. I don't want ...
