Collections/ListSet.cs
author moel.mich
Tue, 30 Dec 2014 22:47:39 +0000
changeset 431 0e46e3ca812a
parent 344 3145aadca3d2
permissions -rw-r--r--
Fixed the following issue (present only on 32-bit systems):

Version: 0.7.0.0

System.NullReferenceException: Object reference not set to an instance of an object.
at OpenHardwareMonitor.GUI.MainForm.timer_Tick(Object sender, EventArgs e)
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Common Language Runtime: 4.0.30319.18444
Operating System: Microsoft Windows NT 6.1.7601 Service Pack 1
Process Type: 32-Bit
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	
     9 */
    10 
    11 using System.Collections;
    12 using System.Collections.Generic;
    13 
    14 namespace OpenHardwareMonitor.Collections {
    15 
    16   public class ListSet<T> : IEnumerable<T> {
    17 
    18     private readonly List<T> list = new List<T>();
    19 
    20     public bool Add(T item) {
    21       if (list.Contains(item))
    22         return false;
    23 
    24       list.Add(item);
    25       return true;
    26     }
    27 
    28     public bool Remove(T item) {
    29       if (!list.Contains(item))
    30         return false;
    31 
    32       list.Remove(item);
    33       return true;
    34     }
    35 
    36     public bool Contains(T item) {
    37       return list.Contains(item);
    38     }
    39 
    40     public T[] ToArray() {
    41       return list.ToArray();
    42     }
    43 
    44     public IEnumerator<T> GetEnumerator() {
    45       return list.GetEnumerator();
    46     }
    47 
    48     IEnumerator IEnumerable.GetEnumerator() {
    49       return list.GetEnumerator();
    50     }
    51 
    52     public int Count {
    53       get {
    54         return list.Count;
    55       }
    56     }
    57   }
    58 }