Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

97
votes
35answers
27k views

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? [closed]

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
24
votes
17answers
14k views

Memory Leak in C#

Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement IDispose are disposed? Would there be cases where some variables are left out?
21
votes
7answers
1k views

How do i prevent my code from being stolen?

What happens exactly when I launch a .NET exe? I know that C# is compiled to IL code and I think the generated exe file just a launcher that starts the runtime and passes the IL code to it. But how? ...
20
votes
4answers
14k views

Embedding unmanaged dll into a managed C# dll

I have a managed C# dll that uses an unmanaged C++ dll using DLLImport. All is working great. However, I want to embed that unmanaged DLL inside my managed DLL as explain by Microsoft there: ...
16
votes
7answers
10k views

Possible to call C++ code from C#?

is it possible to call C++ code, possibly compiled as a code library file (.dll), from within a .NET language such as C#? Specifically, C++ code such as the RakNet networking library Would really ...
16
votes
19answers
28k views

What is the best C++ book for an intermediate to expert developer? [closed]

Possible Duplicate: The Definitive C++ Book Guide and List I'm looking to pick up a good C++ book. I have been programming for many years in managed languages and I will me making the jump ...
14
votes
7answers
11k views

What is managed/unmanaged code in C#?

I am using Assembly.GetEntryAssembly()... in my C# code to get the version of the application. It runs fine but when I try it in NUnit it returns NULL. In the MSDN it states that it can return NULL ...
13
votes
5answers
375 views

Reducing the size of minidumps of managed programs while keeping some heap information?

With the dump debugging support in .NET 4.0 we are looking into automatically (after asking the user of course :) creating minidumps of C# program crashes to upload them to our issue tracking system ...
11
votes
4answers
10k views

How to get parent process in .NET in managed way

I was looking a lot for method to get parent process in .NET, but found only P/Invoke way.
8
votes
2answers
95 views

When I run my C# application, Visual Studio reports that it has loaded a managed binary with (what looks like) a randomly generated name

When I run my C# application, Visual Studio reports that it has loaded a managed binary with (what looks like) a randomly generated name. For example: 'WindowsFormsApplication1.vshost.exe' ...
8
votes
2answers
1k views

Best way to call 32-bit unmanaged code from 64-bit Managed Code using a managed code wrapper

The frequency with which I am coming across the situation where I have to call native 32-bit code from a managed 64-bit process is increasing as 64-bit machines and applications become prevalent. I ...
8
votes
2answers
296 views

Is it possible to determine in which language a .NET Assembly was written ex post facto?

This started as a way to find C++/CLI and Managed C++ assemblies so that all classes internal to them could be tested to ensure all inherited methods were being reimplemented. I would like to add ...
7
votes
5answers
118 views

In managed code, what should I look after to keep good performance?

I am originally a native C++ programmer, in C++ every process in your program is bound to your code, i.e, nothing happens unless you want it to happen. And every bit of memory is allocated (and ...
7
votes
3answers
1k views

what is the difference between “managed” vs “unmanaged”?

I hear/read about it sometimes when talking about .NET, for example "managed code" and "unmanaged code" but I have no idea what they are and what are their differences. What are their difference, by ...
7
votes
4answers
380 views

Marshalling what is it and why do we need it?

What is marshalling and why do we need it. I find it hard to believe that i cannot send an int over the wire from c# to c and have to marshall it. Why cant c# just send the 32bits over with a ...
6
votes
4answers
6k views

A call to PInvoke function '[…]' has unbalanced the stack

Hey I'm getting this weird error on some stuff I've been using for quite a while. It may be a new thing in Visual Studio 2010 but I'm not sure. I'm trying to call a unamanged function written in C++ ...
6
votes
2answers
513 views

How can I declare constant strings for use in both an unmanaged C++ dll and in a C# application?

Curently I'm passing my const string values up from my C++ into my C# at startup via a callback, but I'm wondering if there's a way of defining them in a C++ header file that I can then also refer to ...
6
votes
2answers
4k views

C++/CLI : Casting from unmanaged enum to managed enum

What is the correct way of casting (in C++/CLI) from a native code enum to a managed code enum which contain the same enum values? Is there any difference with using the C# way of casting like for ...
6
votes
5answers
3k views

Is it possible to share an enum declaration between C# and unmanaged C++?

Is there a way to share an enum definition between native (unmanaged) C++ and (managed) C#? I have the following enum used in completely unmanaged code: enum MyEnum { myVal1, myVal2 }; Our ...
6
votes
3answers
2k views

Judy array for managed languages

Judy array is fast data structure that may represent a sparse array or a set of values. Is there its implementation for managed languages such as C#? Thanks
5
votes
4answers
163 views

Calling SSE code in managed code (alignment)

Here's my problem: We have a math library written in C++ that is heavily using SSE. We need to use that same math library in our the managed layer of our tools (which are written in C#). The problem ...
5
votes
2answers
212 views

Is this DLL managed or unmanaged?

I hold before you a DLL. Using only the Win32 SDK, can you tell me if this DLL is a .NET assembly? Why? Our application loads plugins in the form of DLLs. We are trying to extend the definition of ...
5
votes
3answers
233 views

What is the best way to support multiple architectures in a mixed managed/unmanaged environment?

Background We have a .NET library that is referencing one of our unmanaged dlls, lets say: DotNet.dll Unmanaged.dll Thus far, Unmanaged.dll is only 32-bit, so the DotNet.dll is marked with 32-bit ...
5
votes
7answers
455 views

Should I use Managed C++ or C# for my application?

If you had to decide between C# and Managed C++, which would you choose and why? Are there benefits of Managed C++ over C#? Which language do you prefer? What decisions would you make under what ...
5
votes
3answers
372 views

How do I call C++/CLI (.NET) DLLs from standard, unmanaged non-.NET applications?

In the unmanaged world, I was able to write a __declspec(dllexport) or, alternatively, use a .DEF file to expose a function to be able to call a DLL. (Because of name mangling in C++ for the ...
5
votes
3answers
226 views

A completely managed database solution?

Hey, I'm looking for an open source database engine, that is completely written in C# (no any native dll, not mixed mode, etc...). It should support basic actions on tables (INSERT, UPDATE, SELECT, ...
5
votes
3answers
443 views

.NET wrapper for Windows API functionality

Does anyone know of a .NET managed wrapper around Windows API functionality that is not available in the .NET framework itself? Areas such as window creation and display styles, common UI control ...
5
votes
4answers
3k views

JSF Managed Bean auto-create?

Is it possible to have a JSF managed bean be automatically created? For example I have several session scoped beans. Sometimes it becomes necessary to access these instances in code (rather than just ...
5
votes
1answer
385 views

How to get Visual Studios build system to understand unmanaged dependencies of managed dlls?

When building managed code Visual Studio correctly (and recursively) copies dlls of referenced managed projects to the output folder of the project being build. However, if one the of those ...
4
votes
3answers
93 views

Why can I not use Marshal.Copy() to update a struct?

I have some code intended to get a struct from a byte array: public static T GetValue<T>(byte[] data, int start) where T : struct { T d = default(T); int elementsize = ...
4
votes
2answers
297 views

Deserializing a byte array

If I wanted to fill a structure from a binary file, I would use something like this: using (BinaryReader br = new BinaryReader(File.Open(filename, FileMode.Open))) { myStruct.ID = ...
4
votes
4answers
177 views

What does the class name ending “Managed” mean (C# .NET)?

I'm relatively new to C# so please bear with me. I understand the basic difference between managed and unmanaged code. But I'm still a bit confused when to use some methods. For instance what does ...
4
votes
3answers
1k views

Wrapping unmanaged C++ with C++/CLI - a proper approach

as stated in the title, I want to have my old C++ library working in managed .NET. I think of two possibilities: 1) I might try to compile the library with /clr and try "It Just Works" approach. 2) ...
4
votes
2answers
3k views

@ManagedProperty(value = “#{param.id}”) in a non-request Scope Bean

I need to pass a parameter (POST) to a @managedBean, I used managed properties like this: @ManagedProperty(value = "#{param.id}") private int id; And the scope of the Bean is ViewScope I end up ...
4
votes
0answers
606 views

How do I combine an unmanaged dll and a managed assembly into one file?

SQLite from PHX Software has combined a managed assembly (System.Data.SQLite) with an unmanaged dll (the SQLite 32- or 64-bit dll) into one file, and managed to link them together. How do I do this? ...
4
votes
2answers
649 views

Using unmanaged code from managed code

I have my project developed in MFC which is unmnaged code. Now i need to create a similar application in C#, by reusing most of the MFC classes. Is it possible to directly export class/struct/enum ...
4
votes
2answers
496 views

C# — Create Managed Array from Pointer

I'm trying to create a Managed Array of doubles from an array of bytes. I have the problem working currently, but I wanted to optimize. Here's some code that I would like to work: private unsafe ...
4
votes
3answers
2k views

Changes not allowed when unmanaged debugging is enabled?

I get the error changes not allowed when unmanaged debugging is enabled Actually I get the below message but Google doesn't return many results changes are not allowed when unmanaged ...
4
votes
1answer
2k views

How do I do typeof(int) in Managed C++?

I am working on a project now and part of it uses Managed C++. In the managed C++ code, I am creating a DataTable. While defining the Columns for the datatable, I need to specify the Type of the ...
4
votes
2answers
1k views

HOWTO: Call Managed C# Interface From Unmanged C++ On WindowsCE Compact Framework

I have extensive unmanaged Windows CE 5 C++ code that provides a UI that I want to use in a new product by combining it with a large amount of newer business and communications logic written in ...
4
votes
4answers
340 views

How much of .NET is unmanaged?

Frequently when I am using the Reflector, I come across lots of unsafe code. Anyone knows how much of .NET is unmanaged/safe?
4
votes
4answers
2k views

Using managed C++ dll from C#

I've created a dll using managed C++. Now I'm trying to use it from C#. I've added the Object to project references. Object browser shows the object in the dll correcly, path to the dll in object ...
4
votes
2answers
901 views

User32 API calls in .NET

I'm currently planning out a project involving creating a shell replacement for Windows (based on Blackbox, bblean specifically). However I wish to leverage the power of .NET to do so. Many of the ...
4
votes
6answers
3k views

Static libraries with managed code issue

Problem (simplified to make things clearer): 1. there is one statically-linked static.lib that has a function that increments: extern int CallCount = 0; int TheFunction() { ...
3
votes
1answer
71 views

Reverse P/Invoke (also) Managed Callback to Unmanaged Code

The included C# unit test and C code file attempts to pass a managed callback to unmanaged code. The code actually runs but the count variable never increments. So the test fails. The fact that it ...
3
votes
1answer
104 views

How to tell if its a managed memory leak or native memory leak?

My .NET process that interops with native dlls is throwing an OutOfMemory Exception. Following is out put of !address -summary and --eeheap-gc coammands. Does this mean if its a managed leak or native ...
3
votes
4answers
103 views

class in managed c++ called from c#

I have a class decalred inside managed c++ dll as public class IPHelper { public: static void CheckIP(LPWSTR pSocketName); static void DebugMessage(const wchar_t *str, ...); private: ...
3
votes
1answer
397 views

Calling a C# function from unmanaged c++ (via a managed wrapper)

I have C++ source & headers for a set of libraries which I need to call from a C# application. I've created a managed C++ wrapper around the functions I need and am able to call them from C# ...
3
votes
2answers
89 views

Managed code advantages [closed]

Possible Duplicate: Managed and unmanaged code in .NET Hi, If I am right, then code in my app that runs under CLR (all code written the standard way) is managed code. But except for GC, ...
3
votes
1answer
60 views

Performance factors in networking

Sometimes I just go around in circles wondering whether adding a thread queue with a single thread querying and updating a database server at the cost of a worker thread processing user requests would ...

1 2 3 4 5 8