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: docs/csharp/language-reference/compiler-messages/cs1061.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,9 +46,10 @@ public class Program
46
46
47
47
## To correct this error
48
48
49
-
1. Make sure you typed the member name correctly.
50
-
2. If you have access to modify this class, you can add the missing member and implement it.
51
-
3. If you don't have access to modify this class, you can add an [extension method](../../programming-guide/classes-and-structs/extension-methods.md).
49
+
- Make sure you typed the member name correctly.
50
+
- If you have access to modify this class, you can add the missing member and implement it.
51
+
- If you don't have access to modify this class, you can add an [extension method](../../programming-guide/classes-and-structs/extension-methods.md).
52
+
- If the member you're trying to access should exist but doesn't, you might be missing a required NuGet package. Search [NuGet.org](https://www.nuget.org/) to find packages that contain the missing member.
0 commit comments