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
Next revision
Previous revision
indexers_indexed_property [2018/09/10 04:19] wolfgangriedmannindexers_indexed_property [2018/09/11 08:37] (current) 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] +    if _oValues:TryGetValue( cName, OUT cValue == false 
-    else +      cValue := "< not assigned >"
-      return "< not assigned >"+
     endif     endif
 +    return cValue
   end get   end get
   set                set             
indexers_indexed_property.txt · Last modified: 2018/09/11 08:37 by wolfgangriedmann