Untitled
Anonymous
plain_text
01/19/2021 4:51 PM
616 B
14
Indexable
graph.ClassWorkflowNode.Where(s => s.InicioFloxo).ToList().ForEach(s =>
{
if (String.IsNullOrEmpty(s.Label))
s.Label = "Inicio_" + nSeqId++.ToString();
});
graph.ClassWorkflowNode.Where(s => s.FimFluxo).ToList().ForEach(s =>
{
if (String.IsNullOrEmpty(s.Label))
s.Label = "Fim_" + nSeqId++.ToString();
});Editor is loading...