C#C
C#4y ago
Ubaft

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?
var t = asm.GetType(aa);
var val = _project.GetValue<t>(guidValue);
Was this page helpful?