1 write to NodeCount
Microsoft.Interop.SourceGeneration (1)
Marshalling\MarshallerHelpers.cs (1)
205NodeCount = numNodes;
7 references to NodeCount
Microsoft.Interop.SourceGeneration (7)
Marshalling\MarshallerHelpers.cs (7)
173for (int m = 0; m < edgeMap.NodeCount; m++) 206_edgeMap = new bool[NodeCount * NodeCount]; 218get => _edgeMap[to * NodeCount + from]; 219set => _edgeMap[to * NodeCount + from] = value; 228return Array.IndexOf(_edgeMap, true, to * NodeCount, NodeCount) != -1;