Skip to content

Commit dc5a113

Browse files
authored
Removed extra comma (#18690)
1 parent a164e23 commit dc5a113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/snippets/csharp/programming-guide/classes-and-structs/object-collection-initializers/HowToObjectInitializers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void Main()
1919
StudentName student2 = new StudentName
2020
{
2121
FirstName = "Craig",
22-
LastName = "Playstead",
22+
LastName = "Playstead"
2323
};
2424

2525
// Declare a StudentName by using an object initializer and sending

0 commit comments

Comments
 (0)