An object identifier value specification causes a C# integer array to be generated containing the subidentifier values.
ASN.1 production:
<name> OBJECT IDENTIFIER ::= <oidvalue>
Generated C# constants:
public static readonly int[] <name> = { id1, id2, …, idn };
For example, consider the following declaration:
oid OBJECT IDENTIFIER ::= { ccitt b(5) 10 }
This would result in the following C# constant being generated:
public static readonly int[] oid = { 0, 5, 10 };