reflection
public text v1 · immutableSystem.Reflection.Assembly o = System.Reflection.Assembly.LoadFile("<pathtoEXEfile>");
System.Reflection.FieldInfo fi = o.GetType("<Namespace>.<Class>").GetField("<name of string variable>");
fi.Name;
this returns <name of string variable> but not the value of that string variable, which i need. if i invoke .getValue(null) i get an exception.