示例#1
0
            public LastVisitedGERANCellInformation Decode(BitArrayInputStream input)
            {
                LastVisitedGERANCellInformation information = new LastVisitedGERANCellInformation();

                information.InitDefaults();
                input.readBit();
                if (input.readBits(1) != 0)
                {
                    throw new Exception(GetType().Name + ":NoChoice had been choose");
                }
                return(information);
            }
示例#2
0
 public LastVisitedGERANCellInformation Decode(BitArrayInputStream input)
 {
     LastVisitedGERANCellInformation information = new LastVisitedGERANCellInformation();
     information.InitDefaults();
     input.ReadBit();
     if (input.ReadBits(1) != 0)
     {
         throw new Exception(GetType().Name + ":NoChoice had been choose");
     }
     return information;
 }