Wandelt eine durch Punkt getrennte IP in einen ByteArray
//z.B. Value = "192.168.1.1";
private byte[] IpToByteArray(string Value)
{
string[] Temp = Value.Split('.');
int Length = Temp.Length;
byte[] Rueckgabe = new byte[Length];
for (int i = 0; i < Length; i++)
{
Rueckgabe[i] = Convert.ToByte(Convert.ToInt32(Temp[i]));
}
return Rueckgabe;
}
2 Kommentare zum Snippet