We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ef125 commit d80b3b1Copy full SHA for d80b3b1
docs/csharp/misc/cs0430.md
@@ -19,7 +19,10 @@ The extern alias 'alias' was not specified in a /reference option
19
```csharp
20
// CS0430_a.cs
21
// compile with: /target:library
22
-public class MyClass {}
+public class MyClass
23
+{
24
+ public static void M() { /*...*/ }
25
+}
26
```
27
28
## Example 2
@@ -31,6 +34,6 @@ public class MyClass {}
31
34
extern alias MyType; // CS0430
32
35
public class Test
33
36
{
- public static void Main() {}
37
+ public static void Main() { MyType::MyClass.M(); }
38
}
39
0 commit comments