using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestAssembly { public class TestClass { public string _Field; public string Property { get; set; } public string TestMethod(string aTestParameter) { return string.Empty; } } }