예제 #1
0
    public BaseGuideCondition(EnumGuideContitionType t, params int[] parames)
    {
        type = t;
        List <int> list = new List <int>();

        if (parames != null)
        {
            list.AddRange(parames);
        }
        intParames = list.ToArray();
        strParames = string.Empty;
    }
예제 #2
0
 public BaseGuideCondition(EnumGuideContitionType t, string parames)
 {
     type       = t;
     intParames = new int[0];
     strParames = parames;
 }
예제 #3
0
 public BaseGuideCondition(EnumGuideContitionType t)
 {
     type       = t;
     intParames = new int[0];
     strParames = string.Empty;
 }
예제 #4
0
 public virtual bool IsSameConditionType(EnumGuideContitionType targetType)
 {
     return(type == targetType);
 }