using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Globalization;
using System;
using Club.Framework.Data;
using System.Configuration;
namespace Macrow.Components
{
/// <summary>
/// <para><see cref="member"/></para>
/// <res></res>
/// </summary>
public class StoreClassES
{
public StoreClassES()
{
//
// TODO: 在此处添加构造函数逻辑
//
} public bool  Delete_More(string ids, string tableName)
{
SqlParameter[] prams = {
   SqlHelper.MakeInParam("@ids",SqlDbType.NVarChar,200,ids),
   SqlHelper.MakeInParam("@TableName",SqlDbType.NVarChar,50,tableName)
   };
return NonQueryBool("dbo.Delete_More",prams);
}
}}using System;
using System.Data;
using Macrow.Components;
namespace tests.Components
{
/// <summary>
/// tsst 的摘要说明。
/// </summary>
public class tsst
{
StoreClassES MyClass = new StoreClassES();
public static ADInfo Select_AD(Int32 ID)
{
MyClass.Delete_More("12","News");
}

}
}
出错提示C:\Inetpub\wwwroot\tests\Components\tsst.cs(24): “tests.Components.tsst.MyClass”表示“字段”,此处应为“类”---这是什么原因啊???