Skip to content

Commit 78e532e

Browse files
903092: class name
1 parent 11efa8b commit 78e532e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

blazor/diagram/layout/flowchart-layout.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ Different flowchart symbols have different meanings that are used to represent d
5656
{
5757
for (int i = 0; i < Diagram.Connectors.Count; i++)
5858
{
59-
var connector = Diagram.Connectors[i];
60-
var node = Diagram.GetObject(connector.TargetID) as Node;
61-
var srcNode = Diagram.GetObject(connector.SourceID) as Node;
59+
Connector connector = Diagram.Connectors[i];
60+
Node node = Diagram.GetObject(connector.TargetID) as Node;
61+
Node srcNode = Diagram.GetObject(connector.SourceID) as Node;
6262
if (node.Data != null && node.Data is ItemInfo itemInfo)
6363
{
6464
if (itemInfo.Label != null && itemInfo.Label.Count > 0)
@@ -298,9 +298,9 @@ Any text value can be given as a connector text to describe the flow. Also, any
298298
{
299299
for (int i = 0; i < Diagram.Connectors.Count; i++)
300300
{
301-
var connector = Diagram.Connectors[i];
302-
var node = Diagram.GetObject(connector.TargetID) as Node;
303-
var srcNode = Diagram.GetObject(connector.SourceID) as Node;
301+
Connector connector = Diagram.Connectors[i];
302+
Node node = Diagram.GetObject(connector.TargetID) as Node;
303+
Node srcNode = Diagram.GetObject(connector.SourceID) as Node;
304304
if (node.Data != null && node.Data is ItemInfo itemInfo)
305305
{
306306
if (itemInfo.Label != null && itemInfo.Label.Count > 0)

0 commit comments

Comments
 (0)