Fan.Sys.ListType.@is C# (CSharp) Méthode

@is() public méthode

public @is ( Type type ) : bool
type Type
Résultat bool
        public override bool @is(Type type)
        {
            if (type is ListType)
              {
            ListType t = (ListType)type;
            return m_v.@is(t.m_v);
              }
              return base.@is(type);
        }