Skip to content

Commit

Permalink
add an ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ewdlop committed Mar 23, 2024
1 parent 2c666dc commit 5f7fe33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{ "state", "WA" },
{ "postalCode", "98052" }
}),
Enumerable.Range(0, 10).Select(i => new {}),
Enumerable.Range(0, 10).Select(i => new {}), //ignored
1, //ignored
new { Name = "John Doe", Age = 42 },
("test","123"),
Expand All @@ -34,6 +34,7 @@

List<PatchOperation> patchOperations = patchOperationList;
IList<PatchOperation> patchOperations2 = new PatchOperationList();
IReadOnlyList<PatchOperation> patchOperations3 = patchOperationList;

//Not done yet

Expand Down

0 comments on commit 5f7fe33

Please sign in to comment.