本文整理汇总了C#中DDS.create_sequence_tc方法的典型用法代码示例。如果您正苦于以下问题:C# DDS.create_sequence_tc方法的具体用法?C# DDS.create_sequence_tc怎么用?C# DDS.create_sequence_tc使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DDS
的用法示例。
在下文中一共展示了DDS.create_sequence_tc方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: sequence_get_typecode
private static DDS.TypeCode sequence_get_typecode(
DDS.TypeCodeFactory tcf )
{
try {
DDS.TypeCode seq_element_tc = sequence_element_get_typecode(tcf);
if (seq_element_tc == null) {
Console.WriteLine("Error to create " +
"sequence_element_get_typecode");
return null;
}
/* We create the typeCode for the sequence */
DDS.TypeCode tc = tcf.create_sequence_tc(MAX_SEQ_LEN,
seq_element_tc);
return tc;
} catch (DDS.Exception e) {
Console.WriteLine("register_type error {0}", e);
return null;
}
}