C/C++
sideside.txt
Associated article: Managed C++ and the Side-by-Side Cache
Tags: .NET C/C++ Design
Published source code accompanying the article by Richard Grimes in which he examines the Visual Studio installer which places Visual Studio shared libraries in a location called the "side-by-side cache."
Managed C++ and the Side-by-Side Cache
by Richard Grimes
Listing One
using namespace System;
public ref class Test
{
public:
void CallMe()
{
Console::WriteLine("called me");
}
};
Listing Two
using System;
class App
{
static void Main()
{
Test test = new Test();
...


