Hardware/Mainboard/Model.cs
author moel.mich
Tue, 25 May 2010 18:57:28 +0000
changeset 127 76aaf45a01c7
child 130 80065ab20b84
permissions -rw-r--r--
Added a workaround for the "You must keep the stream open for the lifetime of the Image." problem of the Image.FromStream method. This also reduced the overall memory usage (private working set).
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 
     5 namespace OpenHardwareMonitor.Hardware.Mainboard {
     6 
     7   public enum Model {
     8     // DFI
     9     LP_BI_P45_T2RS_Elite,
    10     LP_DK_P55_T3eH9,    
    11 
    12     // Gigabyte
    13     EP45_DS3R,
    14     GA_MA785GMT_UD2H,
    15     P35_DS3,
    16 
    17     // Unknown
    18     Unknown    
    19   }
    20 }