This clause is informative.
This annex collects some information about portability that appears in this specification.
The behavior is undefined in the following circumstances:
- The behavior of the enclosing async function when an awaiter's implementation of the interface methods
INotifyCompletion.OnCompleted
andICriticalNotifyCompletion.UnsafeOnCompleted
does not cause the resumption delegate to be invoked at most once (§12.8.8.4). - Passing pointers as
ref
orout
parameters (§23.3). - When dereferencing the result of converting one pointer type to another and the resulting pointer is not correctly aligned for the pointed-to type. (§23.5.1).
- When the unary
*
operator is applied to a pointer containing an invalid value (§23.6.2). - When a pointer is subscripted to access an out-of-bounds element (§23.6.4).
- Modifying objects of managed type through fixed pointers (§23.7).
- The content of memory newly allocated by
stackalloc
(§23.9). - Attempting to allocate a negative number of items using
stackalloc
(§23.9).
A conforming implementation is required to document its choice of behavior in each of the areas listed in this subclause. The following are implementation-defined:
- The behavior when an identifier not in Normalization Form C is encountered (§7.4.3).
- The interpretation of the input_characters in the pp_pragma-text of a #pragma directive (§7.5.9).
- The values of any application parameters passed to
Main
by the host environment prior to application startup (§8.1). - The precise structure of the expression tree, as well as the exact process for creating it, when an anonymous function is converted to an expression-tree (§11.7.3).
- Whether a
System.ArithmeticException
(or a subclass thereof) is thrown or the overflow goes unreported with the resulting value being that of the left operand, when in anunchecked
context and the left operand of an integer division is the maximum negativeint
orlong
value and the right operand is–1
(§12.9.3). - When a
System.ArithmeticException
(or a subclass thereof) is thrown when performing a decimal remainder operation (§12.9.4). - The impact of thread termination when a thread has no handler for an exception, and the thread is itself terminated (§13.10.6).
- The impact of thread termination when no matching
catch
clause is found for an exception and the code that initially started that thread is reached. (§21.4). - The mappings between pointers and integers (§23.5.1).
- The effect of applying the unary
*
operator to anull
pointer (§23.6.2). - The behavior when pointer arithmetic overflows the domain of the pointer type (§23.6.6, §23.6.7).
- The result of the
sizeof
operator for non-pre-defined value types (§23.6.9). - The behavior of the
fixed
statement if the array expression isnull
or if the array has zero elements (§23.7). - The behavior of the
fixed
statement if the string expression isnull
(§23.7). - The value returned when a stack allocation of size zero is made (§23.9).
- The time at which the finalizer (if any) for an object is run, once that object has become eligible for finalization (§8.9).
- The value of the result when converting out-of-range values from
float
ordouble
values to an integral type in anunchecked
context (§11.3.2). - The exact target object and target method of the delegate produced from an anonymous_method_expression contains (§11.7.2).
- The layout of arrays, except in an unsafe context (§12.7.11.5).
- Whether there is any way to execute the block of an anonymous function other than through evaluation and invocation of the lambda_expression or anonymous_method-expression (§12.16.3).
- The exact timing of static field initialization (§15.5.6.2).
- The result of invoking
MoveNext
when an enumerator object is running (§15.14.5.2). - The result of accessing
Current
when an enumerator object is in the before, running, or after states (§15.14.5.3). - The result of invoking
Dispose
when an enumerator object is in the running state (§15.14.5.4). - The attributes of a type declared in multiple parts are determined by combining, in an unspecified order, the attributes of each of its parts (§22.3).
- The order in which members are packed into a struct (§23.6.9).
- An exception occurs during finalizer execution, and that execution is not caught (§21.4).
- If more than one member matches, which member is the implementation of I.M. (§18.6.5)
- The exact results of floating-point expression evaluation can vary from one implementation to another, because an implementation is permitted to evaluate such expressions using a greater range and/or precision than is required. (§9.3.7)
- The CLI reserves certain signatures for compatibility with other programming languages. (§15.3.9.7)
End of informative text.