Can we exctract the structure s name from .dll using System.Reflection?
Please suggest 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;
}
}