Hello there, I'm working in a C++/CLR console project, and interested to know the content (I mean how it's actually written somewhere) of a specfic function, which is System::Net::Dn s::GetHostEntry (...), this function is a member of Dns class:
public static System.Net.IPHo stEntry GetHostEntry(Sy stem.String hostNameOrAddre ss)
Member of System.Net.Dns
This function worked well in my project by adding these 2 lines at first:
#using <System.dll>
using namespace System::Net;
Now I want to know the code of that function. What's inside it?
Can I find the code somewhere if I don't have it?
Thanks
public static System.Net.IPHo stEntry GetHostEntry(Sy stem.String hostNameOrAddre ss)
Member of System.Net.Dns
This function worked well in my project by adding these 2 lines at first:
#using <System.dll>
using namespace System::Net;
Now I want to know the code of that function. What's inside it?
Can I find the code somewhere if I don't have it?
Thanks
Comment