我正在研究读取转储的内存图像并对其进行波动性分析。
我写了这个 c# 程序,我希望看到来自 Volatiliy 的分析数据
namespace CSharpEx1
{
class Program
{
static void Main(string[] args)
{
int numberA = 12345;
string textA = "This is Message";
var someClassA = new SomeClassA();
Console.WriteLine("Something printed here");
Console.ReadKey();
}
class SomeClassA
{
private int _numberB;
private string _textB;
public SomeClassA()
{
_numberB = 67890;
_textB = "Another Message";
}
}
}
}
我希望能够看到:numberA、textA、numberB 和 textB
我希望我很清楚,谢谢你的任何指示