摘要: string ipAddress = GetParamValue("IpAddress", "192.168.1.2"); int? port = GetParamIntValue("Port", 300); if (string.IsNullOrEmpty(ipAddress)) { thrownew Exception("IpAddress配置不正确。"); } if (!port.HasValue) ... 阅读全文
posted @ 2011-07-21 23:46 微米大大 阅读(1029) 评论(0) 推荐(2) 编辑