Completed code generation new method
This commit is contained in:
@ -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 ");
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user