using System;using System.Collections.Generic;using System.Text.RegularExpressions;using System.Management; namespace IPv4Test{ class Program { static void Main(string[] args) { Console.WriteLine("모든 IPv4 주소----------------"); foreach (string s in GetAllIPv4Address()) { Console.WriteLine(s); } Console.WriteLine("\n유선 IPv4 주소----------------"); foreach (string s in GetWiredIPv4Address()) { Consol..