ARCed.UI.DockPanel.Persistor.IsFormatVersionValid C# (CSharp) Method

IsFormatVersionValid() private static method

private static IsFormatVersionValid ( string formatVersion ) : bool
formatVersion string
return bool
            private static bool IsFormatVersionValid(string formatVersion)
            {
                if (formatVersion == ConfigFileVersion)
                    return true;

                foreach (string s in CompatibleConfigFileVersions)
                    if (s == formatVersion)
                        return true;

                return false;
            }