Given the interface below:
public interface ITest
{
string PropTest1 { get; set; }
int PropTest2 { get; set; }
}
How can I create a dynamic proxy class that will implement the interface ITest and return values for both properties?
Also, would this be slow for a production system?
Thanks