StyleFilter.cs
Upload User: glass0516
Upload Date: 2017-03-12
Package Size: 4886k
Code Size: 0k
Development Platform:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. namespace BaseText
  6. {
  7.     public class StyleFilter
  8.     {
  9.         public StyleFilter()
  10.         { }
  11.         public ArrayList getFilter()
  12.         {
  13.             ArrayList arry = new ArrayList();
  14.             arry.Add(textType.IP);
  15.             arry.Add(textType.date);
  16.             arry.Add(textType.phone);
  17.             return arry;
  18.         }
  19.     }
  20. }