6 Mayıs 2018 Pazar

ConstructorInfo Sınıfı

Constructor
Şöyle yaparız.
var constructor = typeof(Foo).GetConstructors().Single();
GetParameters metodu
Şöyle yaparız.
ConstructorInfo ctor = ...;
foreach (var parameter in ctor.GetParameters())
{
  ...
}

Hiç yorum yok:

Yorum Gönder