projectreportprojectcollection.cs

来自「Time Tracker Starter Kit 使您能轻松创建这样一个应用程序」· CS 代码 · 共 29 行

CS
29
字号
using System;
using System.Collections;

namespace ASPNET.StarterKit.TimeTracker.BusinessLogicLayer
{
	//*********************************************************************
	//
	//	ProjectReportProjectCollection Class
	//
	//	This is a skeleton class for creating sortable collection
	//
	//*********************************************************************

	public class ProjectReportProjectCollection : ArrayList
	{	
		public enum ProjectReportFields
		{
			// Put new enumerations here
		}
		
		public void Sort(ProjectReportFields sortField, bool isAscending)
		{
			// Implement Sort method here
		}

		// Place IComparer implementations here
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?