Answer the question
In order to leave comments, you need to log in
How to write a C# class?
public static class ParsBase
{
List<HostInfo> hostInfo = new List<HostInfo>();
public struct HostInfo
{
public string ip, mac;
public List<PortInfo> ports;
public struct PortInfo
{
public string nameport;
public int num;
public bool isOpen;
public bool isFiltered;
}
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question