Exemplo n.º 1
0
        public LongToken InsertLongToken()
        {
            LongToken token = new LongToken(stream, CurrentLocation);

            WriteInt64(0);
            return(token);
        }
Exemplo n.º 2
0
 public void SetJumpSite(LongToken jumpSite)
 {
     if (jumpSite == null)
     {
         throw new ArgumentNullException("jumpSite");
     }
     this.jumpSite64.Add(jumpSite);
     if (destinationSet)
     {
         Complete();
     }
 }
Exemplo n.º 3
0
 public NumberToken(LongToken ltoken)
 {
     this.ltoken = ltoken;
 }