// Token: 0x06001FC6 RID: 8134 RVA: 0x000956A8 File Offset: 0x000938A8
        internal override void Copy(BamlRecord record)
        {
            base.Copy(record);
            BamlConstructorParameterTypeRecord bamlConstructorParameterTypeRecord = (BamlConstructorParameterTypeRecord)record;

            bamlConstructorParameterTypeRecord._typeId = this._typeId;
        }
Beispiel #2
0
 // The constructor parameter with a single Type object has been read in.  Get the
 // type associated with this record and add it to the constructor parameter list. 
 internal virtual void ReadConstructorParameterTypeRecord(
     BamlConstructorParameterTypeRecord constructorParameterType)
 {
     Debug.Assert(CurrentContext.ContextType == ReaderFlags.ConstructorParams); 
     SetConstructorParameter(MapTable.GetTypeFromId(constructorParameterType.TypeId));
 }