Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1BinarySetOperator.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public abstract class Asn1BinarySetOperator : Asn1Values
11 {
12 private readonly Asn1Values left;
13 private readonly Asn1Values right;
14
21 {
22 this.left = Left;
23 this.right = Right;
24 }
25
29 public Asn1Values Left => this.left;
30
34 public Asn1Values Right => this.right;
35 }
36}
Abstract base class for sets of values
Definition: Asn1Values.cs:11
Abstract base class of binary set operators
Asn1BinarySetOperator(Asn1Values Left, Asn1Values Right)
Abstract base class of binary set operators