diff --git a/csharp/Platform.Numbers/Arithmetic.cs b/csharp/Platform.Numbers/Arithmetic.cs index c754016..477f927 100644 --- a/csharp/Platform.Numbers/Arithmetic.cs +++ b/csharp/Platform.Numbers/Arithmetic.cs @@ -14,6 +14,10 @@ public static class Arithmetic /// Performing adding the x and y arguments. /// Выполняет сложение аргументов х и у. /// + /// + /// Numbers type. + /// Тип чисел. + /// /// /// The first term. /// Первое слагаемое. @@ -33,6 +37,10 @@ public static class Arithmetic /// Performs subtracting y from x. /// Выполняет вычитание y из x. /// + /// + /// Numbers type. + /// Тип чисел. + /// /// /// Minuend. /// Уменьшаемое. @@ -52,6 +60,10 @@ public static class Arithmetic /// Performs multiplication x by y. /// Выполняет умножение х на у. /// + /// + /// Numbers type. + /// Тип чисел. + /// /// /// First multiplier. /// Первый множитель. @@ -71,6 +83,10 @@ public static class Arithmetic /// Performs dividing x by y. /// Выполняет деление х на у. /// + /// + /// Numbers type. + /// Тип чисел. + /// /// /// Dividend. /// Делимое. @@ -90,6 +106,10 @@ public static class Arithmetic /// Increasing the number x by one. /// Увеличивает число x на единицу. /// + /// + /// Number type. + /// Тип числа. + /// /// /// The number to increase. /// Число для увеличения. @@ -105,6 +125,10 @@ public static class Arithmetic /// Increases the value of argument x by one. /// Увеличивает значение аргумента x на единицу. /// + /// + /// Number type. + /// Тип числа. + /// /// /// The argument to increase. /// Аргумент для увеличения. @@ -120,6 +144,10 @@ public static class Arithmetic /// Decrease number x by one. /// Уменьшает число x на единицу. /// + /// + /// Number type. + /// Тип числа. + /// /// /// The number to reduce. /// Число для уменьшения. @@ -135,6 +163,10 @@ public static class Arithmetic /// Decreases the value of the argument x by one. /// Уменьшает значение аргумента x на единицу. /// + /// + /// Number type. + /// Тип числа. + /// /// /// The argument to reduce. /// Аргумент для уменьшения.