Indent.cs
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:1k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. //  ---------------------------------------------------------------------------
  2. // <copyright company="Microsoft Corporation" file="Indent.cs">
  3. //     Copyright (c) Microsoft Corporation 2005
  4. // </copyright>
  5. // <project>
  6. //     XmlDiffView
  7. // </project>
  8. // <summary>
  9. //     Constants used to set the size of the indentation of output text.
  10. // </summary>
  11. // <history>
  12. //      [barryw] 15MAR05 Created
  13. // </history>
  14. //  ---------------------------------------------------------------------------
  15. namespace Microsoft.XmlDiffPatch
  16. {
  17.     using System;
  18.     #region Indent Class
  19.     /// <summary>
  20.     /// Class to contains all constants used 
  21.     /// to set the indentation of output text
  22.     /// </summary>
  23.     internal class Indent
  24.     {
  25.         public const int IncrementSize = 4;
  26.         public const int InitialSize = 0;
  27.     }
  28.     #endregion
  29. }