>Which Richter book are you talking about?
>
Applied Microsoft .Net Framework Programming (around p. 52)
And also:
>In order to find an implementation such as InitializeArray, take a look
>in ecall.cpp. You will find, for example, an entry that maps
>InitializeArray to COMArrayInfo::InitializeAr
Which Richter book are you talking about?
Daniel Perron wrote:
> Hello everyone,
>
> I was discussing about arrays in C# with
> some colleages and we started to look at
> the MSIL code generated for a simple
> inialization, for example:
>
> int [] a = { 3, 5, 7 };
>
> using ildasm. We realized th
al Message-
From: Andrew Kennedy [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 27, 2002 7:08 AM
To: [EMAIL PROTECTED]
Subject: Re: [DOTNET-ROTOR] InternalCall How-To and Performance
Hi,
Look in clr/src/VM/ecall.cpp. This contains mappings for all
"internalcall" uses in the BCL.
-
Hi,
Look in clr/src/VM/ecall.cpp. This contains mappings for all
"internalcall" uses in the BCL.
- Andrew.
-Original Message-
From: Daniel Perron [mailto:[EMAIL PROTECTED]]
Sent: 27 September 2002 13:49
To: [EMAIL PROTECTED]
Subject: [DOTNET-ROTOR] InternalCall How-To and P
Hello everyone,
I was discussing about arrays in C# with
some colleages and we started to look at
the MSIL code generated for a simple
inialization, for example:
int [] a = { 3, 5, 7 };
using ildasm. We realized that the MSIL
code calls the funtion:
System.Runtime.CompilerServices.RuntimeHelpe