Skip to main content

Questions tagged [managed-code]

6 votes
1 answer
3k views

I am developing a project using C++/CLI and WinForms. It is a geometry project, which is why I have to use C++/CLI, because of the C++ geometry library CGAL. I chose to use WinForms for the UI because ...
Simon H's user avatar
  • 171
-8 votes
1 answer
619 views

I'm pondering a project in which one component needs to make a large number of http requests at accurate times. It should, let's say, release a set of 'dozens to hundreds' of requests at 1 second ...
Damien Sawyer's user avatar
7 votes
5 answers
3k views

Garbage collection happens during runtime, real time, while managed code is running. In C++ however, we need to write destruct statements into the code. So we could say that GC is built into the code (...
stevie's user avatar
  • 225
14 votes
3 answers
8k views

Currently I'm studying .NET Core and in the early docs which first introduced .NET Core we see that talk about the many different verticals. This can be seem in this picture: In all the verticals we ...
user1620696's user avatar
  • 4,967
3 votes
0 answers
771 views

Raymond Chen said in 2006 and repeated in 2013: Do not write in-process shell extensions in managed code But I am perplex since there even is a library which is exclusively dedicated to writing ...
Nicolas Raoul's user avatar
0 votes
2 answers
1k views

tl;dr: Why would I ever choose to write/compile unmanaged1 code? Lets assume that I am starting a new project. I have decided to write in a C-like language - probably one of C, C++, C# or Java. C# ...
Jonny's user avatar
  • 141
-1 votes
2 answers
970 views

I read on the wikipedia article for Common Language Runtime that one of the benefits that the runtime provides is "Performance improvements". Executing managed code (Or bytecode) must surely always ...
neelsg's user avatar
  • 483
3 votes
1 answer
303 views

I have a bit of a challenge and I am not sure how to approach this. We have a very very large project (that is about 5 years old). The code base is HUGE so a full refactor is out of the question. ...
Daniel Retief Fourie's user avatar
23 votes
4 answers
20k views

I get confused when people try to make a distinction between compiled languages and managed languages. From experience, I understand that most consider compiled languages to be C,C++ while managed ...
TtT23's user avatar
  • 1,542
6 votes
2 answers
2k views

My understanding is that one of the key features of a B-Tree (and a B+Tree) is that it is designed such that the size of its nodes are some multiple of the block size of whatever media the data is ...
Steven Evers's user avatar
  • 28.2k
5 votes
3 answers
3k views

Assume one wants to create a simple .NET language, or slightly more difficult, a compiler for an existing .NET language. Do you absolutely need to be familiar with the CIL (Common Intermediate ...
ApprenticeHacker's user avatar
15 votes
8 answers
2k views

Managed OSes like Microsoft Singularity and JNode are quite an interesting concept. Essentially, the OS is bootstrapped with code written in a low-level language (C/C++/Assembly), which essentially ...
Chinmay Kanchi's user avatar