Exemplo n.º 1
0
 /// <summary>
 /// The deconstruct message is used for external or internal pattern
 /// matching
 /// </summary>
 /// <param name="algorithm"></param>
 /// <param name="supportedVersion"></param>
 public void Deconstruct(out PatternAlgorithm algorithm, out uint supportedVersion)
 {
     algorithm        = Algorithm;
     supportedVersion = SupportedVersion;
 }
Exemplo n.º 2
0
 public PatternVersion(PatternAlgorithm algorithm, uint supportedVersion)
 {
     Algorithm        = algorithm;
     SupportedVersion = supportedVersion;
 }