Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ManagetLinkCollection.ConsoleTest
{
class Program
{
static void Main(string[] args)
{
Test1 test = new Test1();
var storage = test.TestMethod1();
var items = storage.Storage;
test.TestMethod2();
}
}
}