WowPacketParser.Misc.WowGuid.GetLow C# (CSharp) Method

GetLow() public abstract method

public abstract GetLow ( ) : ulong
return ulong
        public abstract ulong GetLow();

Usage Example

Example #1
0
        public void TestGetLow()
        {
            var guid1 = new WowGuid(0xF130005C0500105F);
            var guid2 = new WowGuid(0x600000002B2D7C9);
            var guid3 = new WowGuid(0);

            Assert.AreEqual(0x105F, guid1.GetLow());
            Assert.AreEqual(0x2B2D7C9, guid2.GetLow());
            Assert.AreEqual(0, guid3.GetLow());
        }
All Usage Examples Of WowPacketParser.Misc.WowGuid::GetLow