English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

3 answers

It's the main dll for the .Net framework. It should come in your installation (obviously), and in 2.0 it's installed to the GAC.

2006-06-13 22:04:11 · answer #1 · answered by Ryan 4 · 0 0

It is the main dynamic link library in .net, Or in other words its Microsoft's Common Object Runtime library for the .net language

2006-06-13 22:06:40 · answer #2 · answered by citalopraming 5 · 0 0

this is the main core library part of .net run time environment

eg.
for reading and writing into registry we use mscorlib.dll
#using
using namespace System;
using namespace Microsoft::Win32;

// This is the entry point for this application

int main(void)
{
RegistryKey * pRegKey = Registry::LocalMachine;
pRegKey = pRegKey->OpenSubKey(L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0");
Object *pValue = pRegKey->GetValue(L"VendorIdentifier");
Console::WriteLine(L"The central processor of this machine is: {0}.", pValue);
return 0;
}

2006-06-13 22:13:02 · answer #3 · answered by kunal_oncyber 2 · 0 0

fedest.com, questions and answers