示例#1
0
        //------------------------------------------------------------
        public void XDataWriteEntity(XDataWriter aWriter)
        {
            switch (mKind)
            {
            case Kind.SInt32:
                aWriter.WriteSInt32Line("0x" + mOffset.ToString("X4") + ":", mValSInt32);
                break;

            default:
                Assert.NotReachHere();
                break;
            }
        }