You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: standard/classes.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1089,7 +1089,7 @@ A type declared within a class or struct is called a ***nested type***. A type t
1089
1089
1090
1090
#### 15.3.9.2 Fully qualified name
1091
1091
1092
-
The fully qualified name ([§7.8.3](basic-concepts.md#783-fully-qualified-names)) for a nested type declarationis `S.N` where `S` is the fully qualified name of the type declarationin which type `N` is declared and `N` is the unqualified name ([§7.8.2](basic-concepts.md#782-unqualified-names)) of the nested type declaration (including any *generic_dimension_specifier* ([§12.8.18](expressions.md#12818-the-typeof-operator))).
1092
+
The fully qualified name ([§7.8.3](basic-concepts.md#783-fully-qualified-names)) for a nested type declaration is `S.N` where `S` is the fully qualified name of the type declarationin which type `N` is declared and `N` is the unqualified name ([§7.8.2](basic-concepts.md#782-unqualified-names)) of the nested type declaration (including any *generic_dimension_specifier* ([§12.8.18](expressions.md#12817-the-typeof-operator))).
1093
1093
1094
1094
#### 15.3.9.3 Declared accessibility
1095
1095
@@ -2937,7 +2937,7 @@ An abstract method declaration is permitted to override a virtual method. This a
2937
2937
2938
2938
When a method declaration includes an `extern` modifier, the method is said to be an ***external method***. External methods are implemented externally, typically using a language other than C#. Because an external method declaration provides no actual implementation, the method body of an external method simply consists of a semicolon. An external method shall not be generic.
2939
2939
2940
-
The mechanism by which linkage to an external method is achieved, is implementation-defined.
2940
+
The mechanism by which linkage to an external method is achieved is implementation-defined.
2941
2941
2942
2942
> *Example*: The following example demonstrates the use of the `extern` modifier and the `DllImport` attribute:
2943
2943
>
@@ -3837,7 +3837,7 @@ Once a particular non-ref-valued property or non-ref-valued indexer has been sel
0 commit comments