diff --git a/standard/classes.md b/standard/classes.md index 01d7a565e..c1abdaad6 100644 --- a/standard/classes.md +++ b/standard/classes.md @@ -1596,7 +1596,7 @@ Constants and readonly fields have different binary versioning semantics. When a > *Example*: Consider an application that consists of two separate programs: > -> +> > ```csharp > namespace Program1 > { @@ -1609,7 +1609,7 @@ Constants and readonly fields have different binary versioning semantics. When a > > and > -> +> > ```csharp > namespace Program2 > { diff --git a/standard/unsafe-code.md b/standard/unsafe-code.md index 85a4a8424..8ca9e243b 100644 --- a/standard/unsafe-code.md +++ b/standard/unsafe-code.md @@ -183,7 +183,7 @@ The default value ([ยง9.3](variables.md#93-default-values)) for any pointer type > *Note*: Although pointers can be passed as `in`, `ref` or `out` parameters, doing so can cause undefined behavior, since the pointer might well be set to point to a local variable that no longer exists when the called method returns, or the fixed object to which it used to point, is no longer fixed. For example: > > -> +> > ```csharp > class Test > { @@ -296,7 +296,7 @@ When one pointer type is converted to another, if the resulting pointer is not c > *Example*: Consider the following case in which a variable having one type is accessed via a pointer to a different type: > > -> +> > ```csharp > unsafe static void M() > {