Exemplo n.º 1
0
        public void GuidCasting(Guid v)
        {
            var tpl = IOUtils.CastGuidToLongs(v);
            var got = IOUtils.CastGuidFromLongs(tpl.s1, tpl.s2);

            Aver.AreEqual(v, got);
            v.See();
            got.See();
        }