(If this is a dumb question I apologies for it, but I'm new to C# language). I'm creating a P2P system in C# with Visual Studio 2019 and I need the IPEndPointCollection class, but I don't find it under System.Net, only IPEndPoint appears. I've searched the internet but I wasn't able to find an answer. Does anyone know how to resolve this issue?
Thank you in advance.
IPEndPointCollectionis in .NET Framework, but isn't part of Core. Why do you think you need it?List<IPEndPoint>work?