I tried to retrieve the TYPE for "PreProcess" from DomainDB class using
Type.GetType("DomainDBManager.DomainDB`1[System.String]+PreProcess")
but this is returning null. Is there anyway to get the Public Field "PreProcess" using Type.GetType?
namespace DomainDBManager { public class DomainDB<T> { public Action<string> PreProcess; } }