Completed code generation new method

This commit is contained in:
2014-12-09 00:52:02 +01:00
parent 1a78dcc16d
commit e0bcb9a91a
3 changed files with 88 additions and 47 deletions

View File

@ -23,24 +23,24 @@ namespace CobXmlSupport
/// <param name="new_Inds">innehåller en string array med aktuella index för den kommande variabeln</param>
public void handleStatus(string[] new_Inds)
{
Debug.WriteLine("------- present indexs -------");
foreach (string prind in presentInds.ToArray())
{
Debug.Write(prind + ", ");
}
Debug.WriteLine("");
Debug.WriteLine("------- new indexs -------");
//Debug.WriteLine("------- present indexs -------");
//foreach (string prind in presentInds.ToArray())
//{
// Debug.Write(prind + ", ");
//}
//Debug.WriteLine("");
//Debug.WriteLine("------- new indexs -------");
if (new_Inds != null)
{
foreach (string nind in new_Inds)
{
Debug.Write(nind + ", ");
}
Debug.WriteLine("");
}
else
Debug.WriteLine(" = null ");
//if (new_Inds != null)
//{
// foreach (string nind in new_Inds)
// {
// Debug.Write(nind + ", ");
// }
// Debug.WriteLine("");
//}
//else
// Debug.WriteLine(" = null ");
returns = 0;
@ -76,21 +76,21 @@ namespace CobXmlSupport
}
else newInds = null;
Debug.WriteLine("------- returns -------");
Debug.Write(returns);
Debug.WriteLine("");
//Debug.WriteLine("------- returns -------");
//Debug.Write(returns);
//Debug.WriteLine("");
Debug.WriteLine("------- tillagda Inds -------");
if (newInds != null)
{
foreach (string tlind in newInds)
{
Debug.Write(tlind + ", ");
}
Debug.WriteLine("");
}
else
Debug.WriteLine(" = null ");
//Debug.WriteLine("------- tillagda Inds -------");
//if (newInds != null)
//{
// foreach (string tlind in newInds)
// {
// Debug.Write(tlind + ", ");
// }
// Debug.WriteLine("");
//}
//else
// Debug.WriteLine(" = null ");
}