Westwind.WebConnection.wwDotNetBridge.GetIndexedProperty C# (CSharp) Method

GetIndexedProperty() public method

Returns an indexed property Value
public GetIndexedProperty ( object baseList, int index ) : object
baseList object
index int
return object
        public object GetIndexedProperty(object baseList, int index)
        {
            try
            {
                _tvalue = baseList;
                return GetPropertyEx(this, "_tvalue[" + index + "]");
            }
            finally
            {
                _tvalue = null;
            }
        }
wwDotNetBridge