QuickFix.Settings.IsKeyValue C# (CSharp) Method

IsKeyValue() public static method

public static IsKeyValue ( string s ) : bool
s string
return bool
        public static bool IsKeyValue(string s)
        {
            return s.IndexOf('=') != -1;
        }