XmlSchemaLengthFacet.cs 311 B

12345678910111213141516
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. namespace System.Xml.Schema
  5. {
  6. /// <summary>
  7. /// Summary description for XmlSchemaLengthFacet.
  8. /// </summary>
  9. public class XmlSchemaLengthFacet : XmlSchemaNumericFacet
  10. {
  11. public XmlSchemaLengthFacet()
  12. {
  13. }
  14. }
  15. }