Exemplo n.º 1
0
 ///<summary>Private constructor. Use the static methods Left, Right instead.</summary>
 private Either(EitherAlternative alternative, L valueL, R valueR)
 {
     Alternative = alternative;
     LeftValue   = valueL;
     RightValue  = valueR;
 }
 ///<summary>Private constructor. Use the static methods Left, Right instead.</summary>
 private Either(EitherAlternative alternative, object value)
 {
     m_alternative = alternative;
     m_value = value;
 }
Exemplo n.º 3
0
 ///<summary>Private constructor. Use the static methods Left, Right instead.</summary>
 private Either(EitherAlternative alternative, object value)
 {
     Alternative = alternative;
     Value = value;
 }
Exemplo n.º 4
0
 ///<summary>Private constructor. Use the static methods Left, Right instead.</summary>
 private Either(EitherAlternative alternative, object value)
 {
     Alternative = alternative;
     Value       = value;
 }
Exemplo n.º 5
0
 ///<summary>Private constructor. Use the static methods Left, Right instead.</summary>
 private Either(EitherAlternative alternative, object value)
 {
     m_alternative = alternative;
     m_value       = value;
 }
Exemplo n.º 6
0
 ///<summary>Private constructor. Use the static methods Left, Right instead.</summary>
 private Either(EitherAlternative alternative, in L valueL, R valueR)