Hello,
I try to create IPAddress object from array of bytes and it always throws
exception,
even when array of bytes is taken from proper IPAddress object:
IPAddress lAddress=IPAddr ess.Parse("1.2. 3.4");
byte[] lBytes=lAddress .GetAddressByte s();
IPAddress lNewAddress=new IPAddress(lByte s);
Has anyone encountered the problem?
Am I doing something wrong ??
(Im usingFramework 1.1)
I try to create IPAddress object from array of bytes and it always throws
exception,
even when array of bytes is taken from proper IPAddress object:
IPAddress lAddress=IPAddr ess.Parse("1.2. 3.4");
byte[] lBytes=lAddress .GetAddressByte s();
IPAddress lNewAddress=new IPAddress(lByte s);
Has anyone encountered the problem?
Am I doing something wrong ??
(Im usingFramework 1.1)
Comment