Avro.Util.checkIsValue C# (CSharp) Méthode

checkIsValue() public static méthode

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

            return false;
        }