Convert = System.Convert

This commit is contained in:
Mikhalkovich Stanislav 2023-03-07 19:56:06 +03:00
parent 8b24a037e3
commit dbd869deb9
6 changed files with 8 additions and 5 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "8";
public const string Build = "3";
public const string Revision = "3250";
public const string Revision = "3251";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=3
%REVISION%=3250
%MINOR%=8
%REVISION%=3251
%COREVERSION%=3
%MAJOR%=3

Binary file not shown.

View file

@ -1 +1 @@
3.8.3.3250
3.8.3.3251

View file

@ -1 +1 @@
!define VERSION '3.8.3.3250'
!define VERSION '3.8.3.3251'

View file

@ -258,6 +258,9 @@ type
/// Предоставляет методы для точного измерения затраченного времени
Stopwatch = System.Diagnostics.Stopwatch;
/// Преобразует значение одного базового типа к другому базовому типу
Convert = System.Convert;
/// Указывает на возможность сериализации класса
Serializable = System.SerializableAttribute;