
c#
NightWind999
这个作者很懒,什么都没留下…
展开
-
DataGridView表内按钮点击事件
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { DataGridViewColumn column1 =...原创 2018-03-13 13:36:17 · 5161 阅读 · 0 评论 -
Newtonsoft.Json反序列化
{ "status": "ok", "data": [ { "id": 2261130684, "symbol": "eosusdt", "account-id": 2147208, "amount": "11.307300000000000000", &原创 2018-03-13 13:46:01 · 362 阅读 · 0 评论 -
get请求
public static string GetHttpResponse(string url, int Timeout) { ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;//SecurityProtocolType.Tls1.2; ...转载 2018-03-13 13:47:35 · 318 阅读 · 0 评论 -
时间戳转换
private DateTime ConvertStringToDateTime(string timeStamp) { DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); long lTime = lon...转载 2018-03-13 13:49:14 · 199 阅读 · 0 评论