摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace hashmap { class A { public string name { get; set; } ... 阅读全文
摘要:
C#的一些获取时间的例子 从周一到周日的顺序,获取排序数值: int i = DateTime.Now.DayOfWeek - DayOfWeek.Monday;if (i == -1) i = 6; 获取某日起,星期一日期: public static DateTime GetMondayDate 阅读全文