3 writes to EndColumn
System.Activities (3)
System\Activities\Debugger\SourceLocationProvider.cs (1)
403EndColumn = sourceLocation.EndColumn
System\Activities\Debugger\Symbol\ActivitySymbol.cs (1)
66this.EndColumn = SymbolHelper.ReadEncodedInt32(reader);
System\Activities\Debugger\Symbol\WorkflowSymbol.cs (1)
193EndColumn = int.Parse(symbolSegments[4], CultureInfo.InvariantCulture)
3 references to EndColumn
System.Activities (3)
System\Activities\Debugger\SourceLocationProvider.cs (1)
244new SourceLocation(symbol.FileName, symbol.GetChecksum(), actSym.StartLine, actSym.StartColumn, actSym.EndLine, actSym.EndColumn));
System\Activities\Debugger\Symbol\ActivitySymbol.cs (2)
48SymbolHelper.WriteEncodedInt32(writer, this.EndColumn); 80return string.Format(CultureInfo.InvariantCulture, "{0},{1},{2},{3},{4}", this.Id, this.StartLine, this.StartColumn, this.EndLine, this.EndColumn);