读取Schema文件(XmlSchema.Read())

//将文件读出,生成Stream对象
System.IO.FileStream myStream = new System.IO.FileStream("c//test.xsd",System.IO.FileMode.OpenOrCreate);

//生成Schema对象
System.Xml.Schema.XmlSchema mySchema = System.Xml.Schema.XmlSchema.Read(myStream,null)

你可能感兴趣的:(schema,Stream,null)