Guest User

Untitled

a guest
Oct 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. for (int i = 0; i < myBlocks.Count - 2; i++)
  2. {
  3.     string[] tokens = myBlocks[i].GetBlock();
  4.     foreach (string token in tokens)
  5.     {
  6.         save.Add(token);
  7.     }
  8.     save[save.Count - 1] += ",";
  9. }
  10.  
  11. string[] tokns = myBlocks[myBlocks.Count - 1].GetBlock();
  12. foreach (string token in tokns)
  13. {
  14.     save.Add(token);
  15. }
  16. save.Add("}");
Add Comment
Please, Sign In to add comment