📄 procedure.format
字号:
/// <summary>
/// Calls {0}, returning a DataSet of any rows returned
/// from the stored proceedure.
/// </summary>
/// <returns>DataSet</returns>
public static DataSet {3}( {1} )
{
ArrayList arrayParams = new ArrayList();
{2}
DataSet ds = dm.ExecuteProcedure("{0}", (SqlParameter[]) arrayParams.ToArray(typeof(SqlParameter)));
{4}
return ds;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -