21 lines
323 B
C#
21 lines
323 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Core.Base
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 默认的硬盘信息
|
|||
|
/// </summary>
|
|||
|
public class DefaultDiskInfo:IDiskInfo
|
|||
|
{
|
|||
|
|
|||
|
public double GetFreeDiskspace()
|
|||
|
{
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|