StyleFilter.cs
上传用户:glass0516
上传日期:2017-03-12
资源大小:4886k
文件大小:0k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

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. }