look this code :
foreach (DrawingTool draw in DrawObjects)
{
// Print("e' una" + typeof(DrawObjects));
//Print("conta TOTALE " + DrawObjects.Count + "list count " + tagg.Count);
if (!(draw is DrawingTools.Line))
{
Print("is not a draw line " + draw.Tag);
continue;
}
Line 29 and 30 is not a line..... ( i draw all line by hand)

Comment