In the following code:
unsafe class X
{
byte* _address;
void test()
{
_address=(byte* )144220152;
}
}
Why the watch windows shows a differtent address for _address variable
?
unsafe class X
{
byte* _address;
void test()
{
_address=(byte* )144220152;
}
}
Why the watch windows shows a differtent address for _address variable
?
Comment