Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / CLR

CLR

CLR

Great Reads

by Dmitry Orzhevsky
This article dives into .NET method inlining topic and shed some light on one particular case when CLR is more likely to inline method - looping.
by Ronnie Mukherjee
This is a beginner's guide to garbage collection in .NET
by matt warren
It’s a fundamental part of .NET and can often happen without you knowing, but how does it actually work? What is the .NET Runtime doing to make boxing possible?
by matt warren
A while ago I wrote about the 'special relationship' that exists between Strings and the CLR, well it turns out that Arrays and the CLR have an even deeper one

Latest Articles

by Dmitry Orzhevsky
This article dives into .NET method inlining topic and shed some light on one particular case when CLR is more likely to inline method - looping.
by Ronnie Mukherjee
This is a beginner's guide to garbage collection in .NET
by matt warren
It’s a fundamental part of .NET and can often happen without you knowing, but how does it actually work? What is the .NET Runtime doing to make boxing possible?
by matt warren
A while ago I wrote about the 'special relationship' that exists between Strings and the CLR, well it turns out that Arrays and the CLR have an even deeper one

All Articles

Sort by Score

CLR 

by Jon Woo
This article is intended to help conceptualize the area of JavaScript Object Oriented Programming by comparing it to the way .NET CLR works.
by Martin Lachman
How to create a system on MS SQL Server for detection of actual changed records in a database table.
by David Catriel
Creating a .NET trigger for SQL Server that will log (down to the field level) all changes made to tables.
by Jon_Slaughter
Design a Statemachine in XML and generate a C# code representing it.
by Pero Matić
A detailed analysis of how to inject the .NET runtime and arbitrary .NET assemblies into unmanaged and managed processes; and how to execute managed code within those processes.
by Bruno van Dooren
Ways to deal with changed security for CLR code in SQL databases
by Dmitry Orzhevsky
This article describes a set of tools and techniques which can be used to find memory allocation problems in .NET code and help significantly boost your app performance.
by Doug Langston
A Visual Studio 2015 project that shows one way to pass information between Windows Forms
by Mohammed Abdulla (ABSS)
Step by step procedure to xcopy deploy .NET assembly into fox-pro application
by Graeme_Grant
This is an alternative for "Simplest WPF Dependency Property For Beginners On Background Color"
by wmjordan
Do something crazy and dangerous with CLR and a method made from Dynamic Assembly
by fraser125
A detailed look at SQL CLR procedures and how to create one that does serious work.
by DiponRoy
Creating CLR in SQL Server
by matt warren
Here is a list of 68 things that the CLR does before executing a single line of your code
by Doug Duerner, Yeon-Chang Wang
In this article we explored a theory; would it be better to not utilize a heap construct when dealing with very large objects in .NET, in order to avoid Large Object Heap (LOH) fragmentation?