Avro.Util.checkIsValue C# (CSharp) Method

checkIsValue() public static method

public static checkIsValue ( string type ) : bool
type string
return bool
        public static bool checkIsValue(string type, params string[] types)
        {
            foreach (string t in types)
                if (t == type)
                    return true;

            return false;
        }