System.Runtime.Serialization.Plists.UniqueValueCache.GetIndex C# (CSharp) Method

GetIndex() public method

Gets the index in the object table for the given value, assuming it has already been added to the cache.
public GetIndex ( System.DateTime value ) : int
value System.DateTime The value to get the index of.
return int
        public int GetIndex(DateTime value)
        {
            return this.dates[value];
        }

Same methods

UniqueValueCache::GetIndex ( bool value ) : int
UniqueValueCache::GetIndex ( double value ) : int
UniqueValueCache::GetIndex ( float value ) : int
UniqueValueCache::GetIndex ( long value ) : int
UniqueValueCache::GetIndex ( string value ) : int