Example #1
0
		public XamlNodeList(XamlSchemaContext schemaContext, int size)
		{
			if (schemaContext == null)
				throw new ArgumentNullException("schemaContext");
			Writer = new XamlNodeListWriter(this);
			SchemaContext = schemaContext;
			nodes = new List<XamlNodeInfo>(size);
		}
Example #2
0
 public XamlNodeList(XamlSchemaContext schemaContext, int size)
 {
     if (schemaContext == null)
     {
         throw new ArgumentNullException("schemaContext");
     }
     Writer        = new XamlNodeListWriter(this);
     SchemaContext = schemaContext;
     nodes         = new List <XamlNodeInfo>(size);
 }