Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. string id = str.Substring(0, 3);
  2. string title = str.Substring(3, 30);
  3. string artist = str.Substring(32, 30);
  4. string album = str.Substring(62, 30);
  5. string year = str.Substring(92, 5);
  6. string memo = str.Substring(97, 30);
  7. string genre = str.Substring(127, 1);
Add Comment
Please, Sign In to add comment