Questions tagged as 'clr'

5
answers

Using unused affect performance?

While developing, I saw that in most of my classes contained a certain amount of using that were not being used and I came to doubt the title. Using unused affects the performance of the application in any way? Do you always need to re...
asked by 21.05.2014 / 16:53
1
answer

What is the correct way to call C # versions?

There seems to be some confusion with the naming of the C # versions and the technologies that are related to it. Is there a C # 2005? Or a C # 3.5? What is the relationship of C # versions with .Net, Visual Studio, etc.? There are books...
asked by 17.06.2014 / 18:08
1
answer

What is the "runtime environment" really?

Studying a little bit about ASP.NET 5 I came across something that I did not quite understand. To use it you need to install KVM (K Version Manager) and KPM (K Package Manager). KVM is responsible for managing KRE (K Runtime Environment) version...
asked by 19.02.2015 / 18:51
2
answers

How does running a .Net application work?

There are several terms that I always hear / read when I talk about running .Net applications, such as MSIL , CIL JITer , JITer , JIT among others I should have forgotten. I would like a brief explanation of how running a .Net appl...
asked by 17.03.2016 / 20:40
1
answer

Is it possible to interact with C # code outside of .NET?

How do I call code written in another language that is not part of .NET, for example the C language? How does this interaction work? How do I call native Windows functions?     
asked by 09.08.2017 / 14:02
3
answers

Concepts of Allocation and Release of Memory in C #

I'm doing a web application that has a finite recursive loop. But during the process memory consumption is constantly increasing and in the end Visual Studio has more than 2 Gigabytes of memory usage. I'd like to know some concepts about memo...
asked by 09.05.2014 / 20:01
1
answer

What is DNX really?

Long time ago I asked here o which is the runtime environment , especially on the .Net platform. It turns out that now .Net has the DNX which is the ".Net Execution Enviroment". In practice we used DNX to run software developed with the new v...
asked by 26.09.2015 / 02:10
1
answer

EdgeJS and Entity Framework

Next, I'm learning NodeJS and I'm thrilled with it, but I found my first stone in the path, accessing a relational database using some ORM (precisely to access PostgreSQL). At first I thought about using SequelizeJS , I even found it well do...
asked by 03.08.2015 / 13:31
1
answer

The Node in the .NET world would be the CLR or .NET?

Given that Node is a server-side development platform in JS ... and in .NET do we have the CLR (Common Language Runtime) the Node would be the CLR that compiles? Or a framework as .NET, as two import modules I was pretty confused about this i...
asked by 18.08.2017 / 16:32
2
answers

What is the behavior of static variables in .Net?

What is the behavior of static variables in .Net? Are these stored in the Heap or the Stack?     
asked by 04.08.2014 / 20:20