From 1c0a29676b2bf348d6681ecccb4ad7ecad731233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=9A=D1=83=D0=B4=D1=80?= =?UTF-8?q?=D1=8F=D1=88=D0=BE=D0=B2?= <qubabox@mail.ru> Date: Fri, 25 Nov 2016 16:00:22 +0300 Subject: [PATCH] - fixed comments --- Mes_Wind_console/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mes_Wind_console/Program.cs b/Mes_Wind_console/Program.cs index 18e295a..85f35dc 100644 --- a/Mes_Wind_console/Program.cs +++ b/Mes_Wind_console/Program.cs @@ -16,7 +16,7 @@ namespace Mes_Wind_console { const int rowCountPrognostic = 3; const int colCountPrognostic = 3; - var prognosticMatrix = new Matrix<PrognosticCell> // TODO: Matrix Лишняя проверка Cells.Rank в RowsCount() / ColumnCount()? + var prognosticMatrix = new Matrix<PrognosticCell> { Cells = new PrognosticCell[rowCountPrognostic, colCountPrognostic], Size = new CellSize(500, 500), @@ -108,7 +108,7 @@ namespace Mes_Wind_console Console.WriteLine("disabled station identifier is {0}", station.Identifier); } - foreach (var coordinate in output.SpecificCoordinates) // TODO: Название Output.Spectific -> Specific ? + foreach (var coordinate in output.SpecificCoordinates) { Console.WriteLine("in coordinate ({0}; {1}) 35kV and less could be broken", coordinate.X, coordinate.Y); } -- GitLab