Exemplo n.º 1
0
 public long ip2Long()
 {
     return(((long)(IPTool.byte2int(this.get1Byte()) * 256 +
                    IPTool.byte2int(this.get2Byte())) * 256 +
             IPTool.byte2int(this.get3Byte())) * 256 +
            IPTool.byte2int(this.get4Byte()));
 }