Skip to content

Commit

Permalink
Update src/System.Windows.Forms/src/System/Windows/Forms/AutoComplete…
Browse files Browse the repository at this point in the history
…StringCollection.cs
  • Loading branch information
RussKie authored Nov 10, 2022
1 parent 1d1ed62 commit 8ae333d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace System.Windows.Forms
public class AutoCompleteStringCollection : IList
{
CollectionChangeEventHandler onCollectionChanged;
private readonly List<string> data = new List<string>();
private readonly List<string> data = new();

public AutoCompleteStringCollection()
{
Expand Down

0 comments on commit 8ae333d

Please sign in to comment.