public Uuid(Guid guid) { AsByte = new UuidBytes(); AsShort = new UuidShort(); AsInteger = new UuidInteger(); AsCardinal = new UuidCardinal(); AsLong = new UuidLong(); AsGuid = guid; }
public Uuid(string g) { var guid = new Guid(g); AsByte = new UuidBytes(); AsShort = new UuidShort(); AsInteger = new UuidInteger(); AsCardinal = new UuidCardinal(); AsLong = new UuidLong(); AsGuid = guid; }