getSize() public méthode

public getSize ( ) : int
Résultat int
 public Variable(string name, Type type, FilterCollection filters = null)
 {
     this.name = name;
     this.type = type;
     if (filters == null || filters.getSize() <= 0)
     {
         this.filters = null;
     }
     else
     {
         this.filters = filters;
     }
 }