Direct question , please direct answer
Want to access physical memory as 0x80 in my code
like
Please answer with a solution , not only explanation
using winxp , visualstudio200 5
thanks in advance
Want to access physical memory as 0x80 in my code
like
Code:
namespace ff { class Program { unsafe static void Main(string[] args) { int* f = (int*)0x80; Console.Write("{0}", *f); } } }
Please answer with a solution , not only explanation
using winxp , visualstudio200 5
thanks in advance
Comment