Helpers.DotNet3_5Message C# (CSharp) Method

DotNet3_5Message() private static method

private static DotNet3_5Message ( bool hasSp1, bool hasDotNet4 ) : string
hasSp1 bool
hasDotNet4 bool
return string
    private static string DotNet3_5Message(bool hasSp1, bool hasDotNet4)
    {
        if (!hasDotNet4)
        {
            return String.Format(@"You have .NET 3.5{0}, this is a recent version of .NET. Download an installer for the newest version <strong>{1}</strong>.", hasSp1 ? " Service Pack 1" : "", Constants.DotNetOnline);
        }

        return "";
    }