FyreVM.Quetzal.Contains C# (CSharp) Méthode

Contains() public méthode

Checks whether the Quetzal file contains a given chunk type.
public Contains ( string type ) : bool
type string The 4-character type identifier.
Résultat bool
        public bool Contains(string type)
        {
            return chunks.ContainsKey(StrToID(type));
        }