I have a task to complete in C#. I have an:
IP Address: 192.168.1.57 and a Subnet Mask: 255.255.0.0
I need to find the Subnet number, which would be, in this case, 192.168.0.0.
However, I need to be able to do this in C# WITHOUT the use of the System.Net library (the system I am programming in does not have access to this library).
It seems like the process should be something like:
1) Split the IP Address into Octets
2) Split the Subnet Mask into Octets
3) Subnet Number Octet 1 = IP Address Octet 1 Anded with Subnet Mask Octet 1
4) Subnet Number Octet 2 = IP Address Octet 2 Anded with Subnet Mask Octet 2
5) Subnet Number Octet 3 = IP Address Octet 3 Anded with Subnet Mask Octet 3
6) Subnet Number Octet 4 = IP Address Octet 4 Anded with Subnet Mask Octet 4
7) Join the Subnet Number Octet 1 + . + Subnet Number Octet 2 + . + Subnet Number Octet 3 + . + Subnet Number Octet 4
8) Voila!
However, my C# is pretty poor. Does anyone have the C# knowledge to help?