@@ -52,7 +52,7 @@ An enum declaration that does not explicitly declare an underlying type has an u
52
52
53
53
> * Example* : The example
54
54
>
55
- > <!-- Example: {template:"standalone-lib", name:"ColorEnumWithInt64UnderlyingType"} -->
55
+ > <!-- Example: {template:"standalone-lib-without-using ", name:"ColorEnumWithInt64UnderlyingType"} -->
56
56
> ``` csharp
57
57
> enum Color : long
58
58
> {
@@ -114,7 +114,7 @@ Each enum member has an associated constant value. The type of this value is the
114
114
115
115
> *Example *: The example
116
116
>
117
- > <!-- Example : {template :"standalone -lib ", name :"EnumWithUInt32UnderlyingTypeAndNegativeValues ", expectedErrors :["CS0031","CS0031","CS0031"]} -->
117
+ > <!-- Example : {template :"standalone -lib - without - using ", name :"EnumWithUInt32UnderlyingTypeAndNegativeValues ", expectedErrors :["CS0031","CS0031","CS0031"]} -->
118
118
> ```csharp
119
119
> enum Color : uint
120
120
> {
@@ -132,7 +132,7 @@ Multiple enum members may share the same associated value.
132
132
133
133
> *Example*: The example
134
134
>
135
- > <!-- Example : {template :"standalone -lib ", name :"EnumWithDuplicateValues "} -->
135
+ > <!-- Example : {template :"standalone -lib - without - using ", name :"EnumWithDuplicateValues "} -->
136
136
> ```csharp
137
137
> enum Color
138
138
> {
@@ -154,9 +154,8 @@ The associated value of an enum member is assigned either implicitly or explicit
154
154
155
155
> *Example *: The example
156
156
>
157
- > <!-- Example : {template :"standalone -console ", name :"PrintingEnumValues ", inferOutput :true } -->
157
+ > <!-- Example : {template :"standalone -console - without - using ", name :"PrintingEnumValues ", inferOutput :true } -->
158
158
> ```csharp
159
- > using System ;
160
159
> enum Color
161
160
> {
162
161
> Red ,
@@ -210,7 +209,7 @@ The associated value of an enum member may not, directly or indirectly, use the
210
209
211
210
> *Example *: The example
212
211
>
213
- > <!-- Example : {template :"standalone -lib ", name :"EnumWithCircularValues ", expectedErrors :["CS0110"]} -->
212
+ > <!-- Example : {template :"standalone -lib - without - using ", name :"EnumWithCircularValues ", expectedErrors :["CS0110"]} -->
214
213
> ```csharp
215
214
> enum Circular
216
215
> {
0 commit comments