Skip to content

Commit 0f0f36f

Browse files
authored
Add NuGet package guidance to CS1061 compiler error documentation (#47961)
1 parent 0ea5ae5 commit 0f0f36f

File tree

1 file changed

+4
-3
lines changed
  • docs/csharp/language-reference/compiler-messages

1 file changed

+4
-3
lines changed

docs/csharp/language-reference/compiler-messages/cs1061.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ public class Program
4646

4747
## To correct this error
4848

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.
5253

5354
## See also
5455

0 commit comments

Comments
 (0)