Post: String Reverser [Source]
07-22-2015, 05:03 PM #1
Dacoco
I void warranties.
(adsbygoogle = window.adsbygoogle || []).push({}); Just something i made to fuck around in the SB a bit :p


Picture: You must login or register to view this content.

Download: Link removed (this contained a binary and a virus scan was not added)

Virus Scan: None needed as open source
Last edited by Oneup ; 07-27-2015 at 08:21 PM. Reason: No virus scan (there was a binary in the zip)
07-22-2015, 05:04 PM #2
Originally posted by Duh
Just something i made to fuck around in the SB a bit :p


Picture: You must login or register to view this content.

Download: Link removed (this contained a binary and a virus scan was not added)

Virus Scan: None needed as open source

Please provide a virus scan and a video
Last edited by Oneup ; 07-27-2015 at 08:22 PM.
07-22-2015, 05:28 PM #3
Default Avatar
Oneup
Guest
Originally posted by Duh
Just something i made to fuck around in the SB a bit :p


Picture: You must login or register to view this content.

Download: Link removed (this contained a binary and a virus scan was not added)

Virus Scan: None needed as open source


You have a binary in there, a virus scan is required.
Last edited by Oneup ; 07-27-2015 at 08:22 PM.
07-22-2015, 05:52 PM #4
Dacoco
I void warranties.
Originally posted by 1UP View Post
You have a binary in there, a virus scan is required.


Where :|
07-22-2015, 05:56 PM #5
Reyz
Banned
Originally posted by Duh
Where :|


in your projects bin folder
07-27-2015, 08:21 PM #6
Default Avatar
Oneup
Guest
Originally posted by Duh
Where :|


Seeing how you still haven't provided a virus scan, I removed the link.
07-27-2015, 08:25 PM #7
Dacoco
I void warranties.
Originally posted by 1UP View Post
Seeing how you still haven't provided a virus scan, I removed the link.


You do realize that is the compiled version of the program right?
07-27-2015, 08:26 PM #8
Default Avatar
Oneup
Guest
Originally posted by Duh
You do realize that is the compiled version of the program right?

You do realize that it is a binary and that requires a virus scan. I've said this 3 times now.
07-27-2015, 08:32 PM #9
Dacoco
I void warranties.
Originally posted by 1UP View Post
You do realize that it is a binary and that requires a virus scan. I've said this 3 times now.


The source to the program is in the folder :|

But here you go
You must login or register to view this content.
Smile)))))))
08-10-2015, 11:56 AM #10
Chen Madhala
Pokemon Trainer
Since there is no download link, if anyone stil interesting of reversing string
It's baisicly working like that
Method 1:
    
string myText = "Hey bro, what's up?"; //Can also be textBox1.Text for textbox
string reverseText = new string(myText.Reverse().ToArray()); //new string -> Converting char Array to string
//Reverse() => Reversing the array, ToArray() => Converting to array (Since reverse is IEnumerable)
MessageBox.Show(reverseText);


Method 2 (Using System.Array.Reverse):
    
char[] myText = "Hey bro, what's up?".ToCharArray(); //TextBox: textBox1.Text.ToCharArray();
Array.Reverse(myText); //Reversing the Array and storing the new characters in the address of myText
MessageBox.Show(new string(myText)); //Converting it to string


You can also use unsafe code and pointers, but i dont see why it's necessary
Last edited by Chen Madhala ; 08-10-2015 at 11:56 AM. Reason: Reverse not Revetse lol...

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo