Hi everyone!i have a question that can we exctract the structure's name from .dll using System.Reflection?Please suggest me some links.
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;
}
}