摘要:
private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.RowIndex >= 0 && e.ColumnIndex >= 0 && e.Value.ToS 阅读全文
摘要:
public static bool IsIP(string IP) { var iCount = IP.Split('.').Count(); if (iCount != 4) { return false; } IPAddress ip; if (IPAddress.TryParse(IP, o 阅读全文