iamtheyammer

ChromebookGUI successful debug

Nov 25th, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. orgUnitPath: /Testbed
  2. str len = 21
  3.  
  4. split point = 11 (between H and :, ath[splitPoint]:)
  5. substr from 14, length 10 this would 14-24 DOES NOT EXIST
  6. want: substr from 13 length 8
  7. 13+8=21
  8.  
  9. answer: first splitpoint+2, length -2
  10.  
  11. trying to debug this:
  12.  
  13. dict.Add(gamResult[i].Substring(0, splitPoint), gamResult[i].Substring(splitPoint + 2, (gamResult[i].Length - splitPoint) - 2));
Advertisement
Add Comment
Please, Sign In to add comment