Example #1
0
        public override uint memorySize()
        {
            T Data = (T)Property.Get;

            setValue(Data);    //ensure the DDMLValue is updated
            return(DDMLValue.sizeBytes());
        }
Example #2
0
 public override uint memorySize()
 {
     setValue(Value);    //ensure the DDMLValue is updated
     return(DDMLValue.sizeBytes());
 }
Example #3
0
 public override void pack(out byte[] messageData)
 {
     setValue(Value);
     messageData = new byte[DDMLValue.sizeBytes()];
     DDMLValue.getData(ref messageData);
 }