This commit is contained in:
Alexander
2022-10-15 16:14:26 +03:00
parent 56b671b7bc
commit 7264e888e5
18 changed files with 1102 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
namespace msoui.Enums;
/// <summary>
/// Перечисление разрядности
/// </summary>
public enum EBits
{
/// <summary>
/// 32-разрядная версия
/// </summary>
Bit32 = 0,
/// <summary>
/// 64-разрядная версия
/// </summary>
Bit64 = 1
}