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

Contains() public method

Determines whether a specfic WindowsTimeZone value is in this WindowsTimeZoneCollection.
public Contains ( WindowsTimeZone value ) : bool
value WindowsTimeZone /// The WindowsTimeZone value to locate in this WindowsTimeZoneCollection. ///
return bool
        public virtual bool Contains(WindowsTimeZone value)
        {
            return this.List.Contains(value);
        }