AppId.ToString

This commit is contained in:
Garry Newman 2019-05-13 10:37:07 +01:00
parent 326d27e98e
commit 6a2db11c5d

View File

@ -10,6 +10,8 @@ public struct AppId
{
public uint Value;
public override string ToString() => Value.ToString();
public static implicit operator AppId( uint value )
{
return new AppId{ Value = value };