how to add a value in the bottom of connected list c# console application code example
Example 1: how to change the title of the console in c#
///Set console Title
Console.Title = "Insert Console title";
Example 2: find a value in list of objects in c#
var item = TextPool.FirstOrDefault(o => o.Name == "test");
if (item != null)
item.value = "Value";