示例#1
0
		public SwitchCase(SwitchComparer comparer, string strValue, params PacketSegmentStructure[] segments) :
			this(strValue, segments)
		{
			m_comparer = comparer;
		}
示例#2
0
		public SwitchCase(SwitchComparer comparer, object value, params PacketSegmentStructure[] segments) :
			this(value, segments)
		{
			m_comparer = comparer;
		}
示例#3
0
		public SwitchCase(SwitchComparer comparer, object value, List<PacketSegmentStructure> segments) :
			this(value, segments)
		{
			m_comparer = comparer;
		}
示例#4
0
 public SwitchCase(ComparisonType type, string strValue, params PacketSegmentStructure[] segments)
     : this(strValue, segments)
 {
     m_comparer = Matchers[(int)type];
 }
示例#5
0
 public SwitchCase(ComparisonType type, object value, List<PacketSegmentStructure> segments)
     : this(value, segments)
 {
     m_comparer = Matchers[(int)type];
 }
示例#6
0
 public SwitchCase(SwitchComparer comparer, string strValue, params PacketSegmentStructure[] segments) :
     this(strValue, segments)
 {
     m_comparer = comparer;
 }
示例#7
0
 public SwitchCase(SwitchComparer comparer, object value, List <PacketSegmentStructure> segments) :
     this(value, segments)
 {
     m_comparer = comparer;
 }
示例#8
0
 public SwitchCase(SwitchComparer comparer, object value, params PacketSegmentStructure[] segments) :
     this(value, segments)
 {
     m_comparer = comparer;
 }