Advertisement
James1337

Hashtables

Apr 9th, 2012
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.35 KB | None | 0 0
  1. $A = ObjCreate('System.Collections.Hashtable')
  2. $A.Add('A', 'Test')
  3. $B = ObjCreate('System.Collections.Hashtable')
  4. $B.Add('B', $A)
  5. ConsoleWrite($B('B')('A') & @LF)
  6.  
  7. #comments-start Output
  8. C:\AutoIt3\test.au3(5,22) : ERROR: syntax error
  9. ConsoleWrite( $B('B')(
  10. ~~~~~~~~~~~~~~~~~~~~~^
  11. C:\AutoIt3\test.au3 - 1 error(s), 0 warning(s)
  12. Test
  13. #comments-end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement