Helpers.GetRealVersionMessage C# (CSharp) Method

GetRealVersionMessage() private static method

Gets a message based on the "real" version as determined by the .Net Checker application.
private static GetRealVersionMessage ( string &realVersion, int releaseKey ) : string
realVersion string The real version.
releaseKey int The release key.
return string
    private static string GetRealVersionMessage(ref string realVersion, int releaseKey)
    {
        bool exact = true;
        if (releaseKey != 0)
        {
            realVersion = GetDotnetVersionFromReleaseKey(releaseKey, out exact);
        }

        return exact
            ? string.Format(Constants.CheckerFound, realVersion)
            : string.Format(Constants.CheckerFound + Constants.CheckerFoundNotExact, realVersion, releaseKey);
    }