Exemplo n.º 1
0
        private void ReadConstructorParameterType()
        {
            var node = new BamlConstructorParameterType();

            node.Type = GetType(_accessor.ReadInt16());

            AddNode(node);
        }
Exemplo n.º 2
0
 private void WriteConstructorParameterType(BamlConstructorParameterType node)
 {
     _blob.Write(ref _pos, (byte)RecordType.ConstructorParameterType);
     _blob.Write(ref _pos, (short)GetTypeId(node.Type));
 }