Skip to content
Snippets Groups Projects
Commit 5b022d47 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add ATXCommon.Conv class for common conversion tasks.

parent fe59972d
Branches
Tags
No related merge requests found
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="ActiveDirectory.cs" /> <Compile Include="ActiveDirectory.cs" />
<Compile Include="Conv.cs" />
<Compile Include="FsUtils.cs" /> <Compile Include="FsUtils.cs" />
<Compile Include="Serializables\DriveToCheck.cs" /> <Compile Include="Serializables\DriveToCheck.cs" />
<Compile Include="Serializables\ServiceConfig.cs" /> <Compile Include="Serializables\ServiceConfig.cs" />
......
namespace ATXCommon
{
public static class Conv
{
public const int MegaBytes = 1024 * 1024;
public const int GigaBytes = 1024 * 1024 * 1024;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment