Notice
Recent Posts
Recent Comments
목록driveinfo (1)
분노의 챔질
반응형
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; namespace CPUUsage { public partial class Form2 : Form { public Form2() { InitializeComponent(); DriveInfo[] drv = DriveInfo.GetDrives(); int y = 20; foreach (DriveInfo d in drv) { if (d.DriveType ..
Programming/C#
2010. 3. 23. 10:43
반응형