disable broken tests on net_4_0
[mcs.git] / docs / ecma334 / 14.5.10.xml
blob5adb88148ad5779ef53a84de13ed1dc02f735ee2
1 <?xml version="1.0"?>
2 <clause number="14.5.10" title="The new operator">
3   <paragraph>The new operator is used to create new instances of types. </paragraph>
4   <paragraph>There are three forms of new expressions: <list><list_item> Object creation expressions are used to create new instances of class types and value types. </list_item><list_item> Array creation expressions are used to create new instances of array types. </list_item><list_item> Delegate creation expressions are used to create new instances of delegate types. </list_item></list></paragraph>
5   <paragraph>The new operator implies creation of an instance of a type, but does not necessarily imply dynamic allocation of memory. In particular, instances of value types require no additional memory beyond the variables in which they reside, and no dynamic allocations occur when new is used to create instances of value types. </paragraph>
6 </clause>