newtelligence.DasBlog.Util.WindowsTimeZoneCollection.IndexOf C# (CSharp) Method

IndexOf() public method

Return the zero-based index of the first occurrence of a specific value in this WindowsTimeZoneCollection
public IndexOf ( WindowsTimeZone value ) : int
value WindowsTimeZone /// The WindowsTimeZone value to locate in the WindowsTimeZoneCollection. ///
return int
        public virtual int IndexOf(WindowsTimeZone value)
        {
            return this.List.IndexOf(value);
        }