Answers for "append value to list c#"

C#
-1

how to add to a list in c#

List<string> names = new List<string>();
names.Add("Bob");
Posted by: Guest on February-08-2022

C# Answers by Framework

Browse Popular Code Answers by Language