BrandonSpendlove

C# - Intel CPU's

Nov 18th, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 6.08 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TechneMain;
  7.  
  8. namespace TechneMain
  9. {
  10.     class IntelCPU
  11.     {
  12.         //Intel Brand...
  13.         public static string intelBrand = "Intel";
  14.         public static string intelCore = "Intel Core ";
  15.  
  16.         //Intel Codename
  17.         public static string intellHaswellE = "Haswell-E";
  18.         public static string intelHaswell = "Haswell";
  19.         public static string intelIvy = "Ivy Bridge";
  20.         public static string intelSandy = "Sandy Bridge";
  21.         public static string intelClarkdale = "Clarkdale";
  22.         public static string intelLynnfield = "Lynnfield";
  23.         public static string intelPentium = "Pentium";
  24.         public static string intelCeleron = "Celeron";
  25.  
  26.         //Intel Socket
  27.         public static string lga1150 = "LGA 1150 - H81, B85, Q85, Q87, H87, Z87, H97, Z97";
  28.  
  29.         #region CPU's 1st Generation
  30.  
  31.         //i5's Lynnfield (45 nm)
  32.         public static string intel750 = "i5-750";
  33.         public static string intel760 = "i5-760";
  34.         public static string intel750S = "i5-760S";
  35.  
  36.         #endregion
  37.  
  38.         #region CPU's 2nd Generation
  39.  
  40.         //i5's Clarkdale (32nm)
  41.         public static string intel650 = "i5-650";
  42.         public static string intel655K = "i5-655K";
  43.         public static string intel660 = "i5-660";
  44.         public static string intel661 = "i5-661";
  45.         public static string intel670 = "i5-670";
  46.         public static string intel680 = "i5-680";
  47.  
  48.         #endregion
  49.  
  50.         #region CPU's 3rd Generation
  51.  
  52.         //i5's Sandy Bridge 32nm (Dual Core)
  53.         public static string intel2390T = "i5-2390T";
  54.  
  55.         //i5's Sandy Bridge 32nm (Quad Core)
  56.         public static string intel2300 = "i5-2300";
  57.         public static string intel2310 = "i5-2310";
  58.         public static string intel2320 = "i5-2320";
  59.         public static string intel2380P = "i5-2380P";
  60.         public static string intel2400 = "i5-2400";
  61.         public static string intel2450P = "i5-2450P";
  62.         public static string intel2500 = "i5-2500";
  63.         public static string intel2500K = "i5-2500K";
  64.  
  65.         //Low Power
  66.         public static string intel2400S = "i5-2400S";
  67.         public static string intel2405S = "i5-2405S";
  68.         public static string intel2500S = "i5-2500S";
  69.  
  70.         //Ultra Low Power...
  71.         public static string intel2500T = "i5-2500T";
  72.  
  73.         //i5's IVY Bridge 22nm (Dual Core)
  74.         public static string intel3470T = "i5-3470T";
  75.  
  76.         //i5's IVY Bridge 22nm (Quad Core)
  77.         //Standard Power
  78.         public static string intel3330 = "i5-3330";
  79.         public static string intel3340 = "i5-3340";
  80.         public static string intel3350P = "i5-3350P";
  81.         public static string intel3450 = "i5-3450";
  82.         public static string intel3470 = "i5-3470";
  83.         public static string intel3550 = "i5-3550";
  84.         public static string intel3570 = "i5-3570";
  85.  
  86.         //Low power...
  87.         public static string intel3330S = "i5-3330S";
  88.         public static string intel3335S = "i5-3335S";
  89.         public static string intel3340S = "i5-3340S";
  90.         public static string intel3450S = "i5-3450S";
  91.         public static string intel3470S = "i5 -3470S";
  92.         public static string intel3475S = "i5-3475S";
  93.         public static string intel3550S = "i5-3550S";
  94.         public static string intel3570S = "i5-3570S";
  95.  
  96.         //Ultra Low Power...
  97.         public static string intel3570T = "i5-3570T";
  98.  
  99.         #endregion
  100.  
  101.         #region CPU's 4th Generation
  102.  
  103.         //Intel i5's Haswell 22nm (Dual Core)
  104.         public static string intel4570T = "i5-4570T";
  105.         public static string intel4570TE = "i5-4570TE";
  106.  
  107.         //Intel i5's Haswell 22nm (Quad Core)
  108.         //Standard Power...
  109.         public static string intel4430 = "i5-4430";
  110.         public static string intel4440 = "i5-4440";
  111.         public static string intel4460 = "i5-4460";
  112.         public static string intel4570 = "i5-4570";
  113.         public static string intel4590 = "i5-4590";
  114.         public static string intel4670 = "i5-4670";
  115.         public static string intel4670K = "i5-4670K";
  116.         public static string intel4690 = "i5-4690";
  117.         public static string intel4690K = "i5-4690K";
  118.        
  119.         //Low Power...
  120.         public static string intel4430S = "i5-4430S";
  121.         public static string intel4440S = "i5-4440S";
  122.         public static string intel4460S = "i5-4460S";
  123.         public static string intel4570S = "i5-4570S";
  124.         public static string intel4590S = "i5-4590S";
  125.         public static string intel4670S = "i5-4670S";
  126.         public static string intel4690S = "i5-4690S";
  127.  
  128.         //Ultra Low power...
  129.         public static string intel4460T = "i5-4460T";
  130.         public static string intel4590T = "i5-4590T";
  131.         public static string intel4670T = "i5-4670T";
  132.         public static string intel4690T = "i5-4690T";
  133.  
  134.         //Intel I5's Haswell-H 22nm (Quad Core) - eDRAM acting as L4 Cache...
  135.         public static string intel4570R = "i5-4570R";
  136.         public static string intel4670R = "i5-4670R";
  137.  
  138.         //Intel i7's Haswell 22nm (Quad Core)
  139.         public static string intel4770 = "i7-4770";
  140.         public static string intel4770K = "i7-4770K";
  141.         public static string intel4790 = "i7-4790";
  142.         public static string intel4790K = "i7-4790K";
  143.  
  144.         #endregion
  145.  
  146.         //Cores
  147.         public static string intelcore = "1";
  148.         public static string intelcore2 = "2";
  149.         public static string intelcore4 = "4";
  150.         public static string intelcore6 = "6";
  151.         public static string intelcore8 = "8";
  152.  
  153.         //Technoology (die size)
  154.         public static string intelTech45 = "45nm";
  155.         public static string intelTech32 = "32nm";
  156.         public static string intelTech22 = "22nm";
  157.  
  158.         //Hyperthreading
  159.         public static string intelHTTrue = "True";
  160.         public static string intelHTFalse = "False";
  161.  
  162.         //TDP's
  163.         public static string tdp88 = "88 W";
  164.         public static string tdp84 = "84 W";
  165.     }
  166. }
Advertisement
Add Comment
Please, Sign In to add comment