c#保存UTF8文件去除BOM
摘要:var encoding = new UTF8Encoding(false);
阅读全文
posted @
2022-08-31 11:13
M1911
阅读(152)
推荐(0)
c++ 根据当前日期往前往后推算日期
摘要:// -1往前推1天 1往后推1天 int calc_date(int days) { struct tm tmin; struct tm tmout; SYSTEMTIME st; GetLocalTime(&st); tmin.tm_year = st.wYear - 1900; tmin.tm
阅读全文
posted @
2022-08-03 15:15
M1911
阅读(444)
推荐(0)