62,243
社区成员




public string SubIp(string Ip)
{
string newIp = null;
string[] ipList = Ip.Split(new char[] { '.' },StringSplitOptions.RemoveEmptyEntries);
if (ipList.Length == 4)
{
newIp += ipList[0]+"."+ipList[1]+"."+"*.*";
}
return newIp;
}