| View previous topic :: View next topic |
| Author |
Message |
elco How do I cheat?
Reputation: 0
Joined: 11 Jul 2012 Posts: 7
|
Posted: Tue Mar 08, 2016 4:14 am Post subject: a bug in c# |
|
|
i have this code and i dont now what to do next
| Code: |
byte[] hallo = { 0x48, 0x83, 0xec, 0x00, 0xe8 };//this to get
///\x48\x83\xec\x00\xe8 //the code to take in
string hoek = "\x48\x83\xec\x00\xe8";
hoek.Replace("\\", string.Empty);
byte[] lees = Encoding.Default.GetBytes(hoek);//this shut get hallo
var getstring = BitConverter.ToString(lees);///to see huh 3F not 83
label1.Text = getstring;
|
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Tue Mar 08, 2016 1:45 pm Post subject: |
|
|
Then it is not a bug, it is you not knowing the language or what you are doing. Instead of copy-pasting code, go learn the language and understand what you are doing.
_________________
- Retired. |
|
| Back to top |
|
 |
gir489 Grandmaster Cheater
Reputation: 14
Joined: 03 Jan 2012 Posts: 841 Location: Maryland, United States
|
Posted: Tue Mar 08, 2016 2:46 pm Post subject: |
|
|
|
|
| Back to top |
|
 |
|