class1.cs
来自「.net三层结构的源码」· CS 代码 · 共 24 行
CS
24 行
using System;
using System.Collections.Generic;
using System.Text;
using IDal;
namespace AccessDal
{
public class AccessDal : IDAL
{
#region IDAL 成员
public System.Data.DataSet SelectSQL(string sql)
{
throw new Exception("The method or operation is not implemented.");
}
public bool ExcuteSQL(string sql)
{
throw new Exception("The method or operation is not implemented.");
}
#endregion
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?