Difference between revisions of "Sample: .cs const declaration"

From dbscript Online Help
Jump to: navigation, search
(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...)
(No difference)

Revision as of 01:58, 9 January 2009

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;
}