Popular Post kurosaki ichigo Rare Rare Posted March 20, 2021 Popular Post Posted March 20, 2021 BLOCK:ConstantByteArray LABEL:BYTES 1 value = ABCD => VAR @bytes1 ENDBLOCK BLOCK:ConstantString LABEL:STRING value = "hello" => VAR @myString ENDBLOCK BLOCK:ConstantByteArray LABEL:BYTES 2 value = DCBE => VAR @bytes2 ENDBLOCK var ms = new System.IO.MemoryStream(); ms.Write(bytes1); ms.Write(System.Text.Encoding.UTF8.GetBytes(myString)); ms.Write(bytes2); var finalBytes = ms.ToArray(); ms.Dispose(); // Now you can use the variable finalBytes for example // in the content of a RAW http request 6 2 Trophies and Medals
jinyu Rare Posted April 7, 2021 Posted April 7, 2021 Il 20/3/2021 at 10:46, kurosaki ichigo dice: contenuto thank you a lot for this share
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now