Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PlaceOfBirth.cs
2{
7 {
11 public PlaceOfBirth()
12 : base()
13 {
14 }
15
22 public PlaceOfBirth(byte[] Value, string StringValue, string[] PlaceFields)
23 : base(Value, StringValue)
24 {
25 this.PlaceFields = PlaceFields;
26 }
27
31 public override ushort Tag => 0x5f11;
32
36 public string[]? PlaceFields { get; }
37
44 public override StringObject Create(byte[] Value, string StringValue)
45 {
46 string[] Fields = StringValue.Split('<', System.StringSplitOptions.RemoveEmptyEntries);
47 return new PlaceOfBirth(Value, StringValue, Fields);
48 }
49 }
50}
PlaceOfBirth(byte[] Value, string StringValue, string[] PlaceFields)
Place of Birth
Definition: PlaceOfBirth.cs:22
string?[] PlaceFields
Fields identifying the place.
Definition: PlaceOfBirth.cs:36
override StringObject Create(byte[] Value, string StringValue)
Creates an instance of the string-valued data object.
Definition: PlaceOfBirth.cs:44
Abstract base class for string-valued objects.
Definition: StringObject.cs:10