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