User Tools

Site Tools


indexers_indexed_property

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
indexers_indexed_property [2018/09/10 04:19] wolfgangriedmannindexers_indexed_property [2018/09/11 04:16] wolfgangriedmann
Line 55: Line 55:
 property self[cName as string] as string property self[cName as string] as string
   get    get
-    if _oValues:ContainsKey( cName ) +    local cValue as string 
-      return _oValues[cName] +    cValue := "< not assigned >" 
-    else +    _oValues:TryGetValue( cName, OUT cValue ) 
-      return "< not assigned >" +    return cValue
-    endif+
   end get   end get
   set                set             
indexers_indexed_property.txt · Last modified: 2018/09/11 08:37 by wolfgangriedmann