本文整理汇总了C#中Wombat.MamaMsgField.getVectorMsg方法的典型用法代码示例。如果您正苦于以下问题:C# MamaMsgField.getVectorMsg方法的具体用法?C# MamaMsgField.getVectorMsg怎么用?C# MamaMsgField.getVectorMsg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Wombat.MamaMsgField
的用法示例。
在下文中一共展示了MamaMsgField.getVectorMsg方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: displayField
/// <summary>
/// Display the contents of a field in the console window.
/// </summary>
/// <param name="field">
/// The field to display.
/// </param>
/// <param name="indent">
/// The level of indent to add before the string for formatting purposes.
/// </param>
internal void displayField(MamaMsgField field, int indent)
{
// Format a log string
string logMessage = "";
string indentSpacer = " ";
for (int i = 0; i < indent; i++)
indentSpacer += " ";
if (m_quietness < 1)
{
logMessage = string.Format(
"{0}{1, -20 } |{2,5} | {3, 10} | ",
indentSpacer,
field.getName(),
field.getFid(),
field.getTypeName());
}
mamaFieldType fieldType = field.getType();
switch (fieldType)
{
case mamaFieldType.MAMA_FIELD_TYPE_MSG:
{
MamaMsg tmpMsg = field.getMsg();
Console.WriteLine(logMessage);
Console.WriteLine(indentSpacer + "{");
if (!(m_iterator))
{
tmpMsg.iterateFields(this, m_dictionary, indent + 1);
}
else
{
MamaMsgIterator subIterator = new MamaMsgIterator(m_dictionary);
MamaMsgField subField;
tmpMsg.begin(ref subIterator);
while ((subField = subIterator.getField()) != null)
{
displayField(subField, indent + 1);
subIterator++;
}
}
Console.WriteLine(indentSpacer + "}");
}
break;
case mamaFieldType.MAMA_FIELD_TYPE_VECTOR_MSG:
{
MamaMsg[] tmpMsgarray = field.getVectorMsg();
foreach (MamaMsg tmpMsg in tmpMsgarray)
{
Console.WriteLine(logMessage);
Console.WriteLine(indentSpacer + "{");
if (!(m_iterator))
{
tmpMsg.iterateFields(this, m_dictionary, indent + 1);
}
else
{
MamaMsgIterator subIterator = new MamaMsgIterator(m_dictionary);
MamaMsgField subField;
tmpMsg.begin(ref subIterator);
while ((subField = subIterator.getField()) != null)
{
displayField(subField, indent + 1);
subIterator++;
}
}
Console.WriteLine(indentSpacer + "}");
}
}
break;
case mamaFieldType.MAMA_FIELD_TYPE_STRING:
logMessage += field.getString();
break;
case mamaFieldType.MAMA_FIELD_TYPE_BOOL:
if (m_quietness < 1)
logMessage += field.getBool().ToString();
else
logMessage += field.getBool();
break;
case mamaFieldType.MAMA_FIELD_TYPE_CHAR:
if (m_quietness < 1)
logMessage += field.getChar().ToString();
else
logMessage += field.getChar();
break;
case mamaFieldType.MAMA_FIELD_TYPE_I8:
if (m_quietness < 1)
logMessage += field.getI8().ToString();
//.........这里部分代码省略.........