Westwind.WebConnection.wwDotNetBridge.GetVersionInfo C# (CSharp) Method

GetVersionInfo() public method

public GetVersionInfo ( ) : string
return string
        public string GetVersionInfo()
        {
            string res = @".NET Version: " + Environment.Version.ToString() + "\r\n" +
               GetType().Assembly.CodeBase;
            return res;
        }
wwDotNetBridge