#deleted
Encoding.ASCII.GetBytes(stringVal); Encoding.ASCII.GetString(bytesVal);
Not exactly... =PQuote:
Err.. that does just that lolCode:Encoding.ASCII.GetBytes(stringVal); Encoding.ASCII.GetString(bytesVal);
if (e.KeyChar == (char)Keys.Enter)
{
try
{
string[] ByteArray = ByteArrayBox.Text.Replace("\n", ":").Split(':');
byte[] newbuffer = new byte[ByteArray.Length];
int n = 0;
while (n != ByteArray.Length && ByteArray[n] != "")
{
newbuffer[n] = (byte.Parse(ByteArray[n]));
n++;
}
StringTextBox.Text = Encoding.ASCII.GetString(newbuffer, 0, newbuffer.Length);
}
catch { MessageBox.Show("The Array you inputed contains errors. Please check your Array.", "Format Error"); }
}
Your comment was:Quote:
That is very useful.
byte[] Array = Encoding.ASCII.GetBytes("Black Ops is SICK!!");
Console.WriteLine("Bytes of 'Black Ops is SICK!! := {0}", Array);
string ArrayReversed = Encoding.ASCII.GetString(Array);
Console.WriteLine("Reversed := {0}", ArrayReversed);
Haahaha Spam?Quote:
Your comment was:
- Spam
- Just for Postcount
- Just wanted to say something
And another thing is that you have NO use for it, You dont know how it works, you know shit about it. I actually was up untill 3am working with getstrings, getbytes(along with Encryptions to them) So I do know how it works before you go saying nor do I.
@Fang: Pretty useless tool tbh.
Reversed is not the correct keyword to use but meh.Code:byte[] Array = Encoding.ASCII.GetBytes("Black Ops is SICK!!"); Console.WriteLine("Bytes of 'Black Ops is SICK!! := {0}", Array); string ArrayReversed = Encoding.ASCII.GetString(Array); Console.WriteLine("Reversed := {0}", ArrayReversed);
But at least you gave something to the community that has never been released before so I got to give you credits for that.
Please read previous posts. I stated that it was extremely simple; however, since I"m the only one that put it into an app to help code, I'm taking that it's a very useful release (if you know how to code packets and need to know what the offsets might be).Quote:
This is a specific thing that you need, may I add that it`s extremely simple. I really do not see the point of this release/resource/w/e.