using System; using System.Collections.Generic; using System.Text; namespace Apewer { /// 表示 DateTime 的部分。 public enum DateTimePart { /// Year, /// Month, /// Day, /// Hour, /// Minute, /// Second, /// Millisecond } }