From 1d954bf1da95fa7bd6326cca814dc6dee6e9db58 Mon Sep 17 00:00:00 2001 From: Misha-272 <76594315+Misha-272@users.noreply.github.com> Date: Sat, 9 Jan 2021 16:53:36 +0500 Subject: [PATCH] Create GenericCollectionMethodsBase.cs --- .../GenericCollectionMethodsBase.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/Platform.Collections.Methods/GenericCollectionMethodsBase.cs b/csharp/Platform.Collections.Methods/GenericCollectionMethodsBase.cs index 72da002..bb2f93d 100644 --- a/csharp/Platform.Collections.Methods/GenericCollectionMethodsBase.cs +++ b/csharp/Platform.Collections.Methods/GenericCollectionMethodsBase.cs @@ -22,10 +22,10 @@ public abstract class GenericCollectionMethodsBase protected virtual TElement GetZero() => default; /// - /// Presents the Range in readable format. - /// Представляет диапазон в удобном для чтения формате. + /// Returns a null constant of type . + /// Возвращает нулевую константу типа . /// - /// String representation of the Range.Строковое представление диапазона. + /// A null constant of type .Нулевая константа типа <см. Cref="EqualToZero" />. [MethodImpl(MethodImplOptions.AggressiveInlining)] protected virtual bool EqualToZero(TElement value) => EqualityComparer.Equals(value, Zero);