[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / docs / ecma334 / 14.5.10.xml
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>