E
Egis
If I have correctly understood, .Net framework libraries
should match ECMA-335 standard (latest is second edition).
mscorelib.dll (1.1) contains class "CharEnumerator" with
property declared folowing:
".property instance object
System.Collections.IEnumerator.Current()"
CLI standard says, that property should be declared:
..property <propHead> { <propMember>* };
<propHead>::= [specialname][rtspecialname] <callConv>
<type> <id> ( <parameters> );
ID - C style alphaNumeric identifier (e.g. Hello_There2);
Here we got that properties id is declared with dots, so
it should be incopatibility with ECMA-335 standard? Could
someone explain this situation? 1.0 .Net Framework
contains correct property declaration.
Thank you
should match ECMA-335 standard (latest is second edition).
mscorelib.dll (1.1) contains class "CharEnumerator" with
property declared folowing:
".property instance object
System.Collections.IEnumerator.Current()"
CLI standard says, that property should be declared:
..property <propHead> { <propMember>* };
<propHead>::= [specialname][rtspecialname] <callConv>
<type> <id> ( <parameters> );
ID - C style alphaNumeric identifier (e.g. Hello_There2);
Here we got that properties id is declared with dots, so
it should be incopatibility with ECMA-335 standard? Could
someone explain this situation? 1.0 .Net Framework
contains correct property declaration.
Thank you