Как бы получить пространство имен, класс, метод и имя параметра или переменной.Например:
namespace TheNamespace
{
class Theclass
{
void Thing()
{
string thevariable = "";
string b = thevariable.GetFullName();
// b would be equal to TheNamespace.Theclass.Thing.thevariable
}
}
}
Как бы я это сделал