namespace or class or specific function content

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Youssef Dirani
    New Member
    • Dec 2010
    • 1

    namespace or class or specific function content

    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
  • Nelson Joseph
    New Member
    • Dec 2006
    • 14

    #2
    Try "DLL Export Viewer"

    Comment

    Working...