tstringmap_operator_iset.bmx 262 B

12345678910111213
  1. SuperStrict
  2. Framework brl.standardio
  3. Import brl.map
  4. Local map:TStringMap = New TStringMap
  5. map["one"] = "Hello" ' insert value using index operator
  6. map["two"] = "World"
  7. For Local s:String = EachIn map.Keys()
  8. Print s + " = " + String(map.ValueForKey(s))
  9. Next