testapp.format

来自「客户关系管理系统ASP.NET+VB.NET编程完整程序!」· FORMAT 代码 · 共 31 行

FORMAT
31
字号
using System;
using System.Diagnostics;
using System.Configuration;
using System.Collections;
using System.Data.SqlTypes;

using OrmLib;
using {0};

namespace TestApp
{
	/// <summary>
	/// This test app can be used to test your new Biz object.
	/// Please make sure that the test app is set as the startup Project.
	/// </summary>
	class TestApp
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{
			//
			// TODO: Add code to start application here
			//
			DataManager dm = new DataManager(Config.Dsn);
		}
	}
}

⌨️ 快捷键说明

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