コード例 #1
0
		public override void RegisterComponents()
		{
			this.bl1 = Components[0] as i0_ASN1Boolean;
			this.bl2 = Components[1] as i1_ASN1Boolean;
		}
コード例 #2
0
		public void Test_SEQUENCE_w_TAGGING()
		{
			test_SEQUENCE_w_tagging t1 = new test_SEQUENCE_w_tagging();

			i0_ASN1Boolean i0 = new i0_ASN1Boolean();
			i0.Assign(ASN1Boolean.FALSE);

			i1_ASN1Boolean i1 = new i1_ASN1Boolean();
			i1.Assign(ASN1Boolean.TRUE);

			t1.Assign(i0, i1);

			BERWriter.DumpHEX(t1);
			
		}