本文整理汇总了C#中DataTable.add方法的典型用法代码示例。如果您正苦于以下问题:C# DataTable.add方法的具体用法?C# DataTable.add怎么用?C# DataTable.add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataTable
的用法示例。
在下文中一共展示了DataTable.add方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: compileRoutine
/// <summary>
/// Compile a routine
/// </summary>
/// <param name="routine"></param>
/// <param name="bIsMain">The main function doesn't need a RETURN commands</param>
private void compileRoutine(XElement routine, bool bIsMain, Stack stack)
{
DataTable localDataTable = new DataTable();
// push all parameters(attributes)
int index = 2 + routine.Attributes().Count(); // 0 points to next free,-1 is eip, -2 is ebp, -3 is first param
foreach (XAttribute attr in routine.Attributes())
{
//if (bIsMain)
//{
//m_currentProgramCode.Writer.Write((int)XmlScriptExecutor.OpCode.ALLOC_STRING_ON_HEAP);
//stack.push();
//}
localDataTable.add(attr.Name.LocalName, -1 * index * sizeof(int));
--index;
}
foreach (XElement instruction in routine.Elements())
{
// push parameters
foreach (XAttribute attr in instruction.Attributes())
{
pushParameter(localDataTable, attr.Value);
}
compile(instruction, localDataTable, instruction.Attributes().Count());
}
if (!bIsMain)
{
m_currentProgramCode.Writer.Write((int)XmlScriptExecutor.OpCode.RETURN);
}
}