Calling a method with runtime obtained Type
hi, how can i call a method
public T GetValue<T>(Guid? guid) with a type that i know only at runtime? public T GetValue<T>(Guid? guid)var t = asm.GetType(aa);
var val = _project.GetValue<t>(guidValue);