Можем ли мы извлечь имя структуры из .dll с помощью System.Reflection?
Пожалуйста, предложите несколько ссылок.
struct MyStruct // <-- this name i wanna to find from .dll using Reflection
{
private int length;
private int breadth;
public int Area(int length,int breadth)
{
return length*breadth;
}
}