Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private string convertLEtoBE(string input)
  2. {
  3. string output = "";
  4. input.Replace(" ", string.Empty);
  5. for (int i = 0; i < input.Length; i += 2)
  6. {
  7. output += input.Substring(input.Length-(2+i), 2);
  8. }
  9. return output;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement