Sample: .cs const declaration

From dbscript Online Help
Revision as of 01:58, 9 January 2009 by Ho (talk | contribs) (New page: This is a sample based on dbscript's XslType table: <pre> public static class XslType { /// <summary> /// Object /// </summary> public const int Object = 1; /// <summary> /// Projec...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This is a sample based on dbscript's XslType table:

public static class XslType
{
	/// <summary>
	/// Object
	/// </summary>
	public const int Object = 1;
	/// <summary>
	/// Project Version
	/// </summary>
	public const int ProjectVersion = 2;
	/// <summary>
	/// Value Script
	/// </summary>
	public const int ValueScript = 3;
}