+ -
当前位置:首页 → 问答吧 → 填空题 在线等

填空题 在线等

时间:2011-04-01

来源:互联网

public static XmlSchemaElement GetTableSchema(string name)
  {
  XmlSchemaSet xsSet = new XmlSchemaSet();
  xsSet.Add("http://www.w3.org/2001/XMLSchema", __________);
  xsSet.Compile();
  _________ schema = null;
  foreach (XmlSchema xs in xsSet.Schemas())
  {
  schema = xs;
  }
  XmlQualifiedName qf = new _____________ (name, "http://www.w3.org/2001/XMLSchema");
  if (schema.Elements.Contains(qf))
  {
  return (XmlSchemaElement)schema.Elements[qf];
  }
  return null;
  }

作者: qydvip   发布时间: 2011-04-01

???
填空题?

作者: fengyarongaa   发布时间: 2011-04-01

恩 是啊 是一道测试题帮帮忙

作者: qydvip   发布时间: 2011-04-01