我在我的方法
中从数据表中获取了一个int值public void GetListing(string url,int ID)
我想从另一个方法访问此ID,然后为其分配更新值,然后保存在我的表中 是否有可能这样做?
updateMethod(int ID,int Status)
答案 0 :(得分:1)
您应该通过传递ID来调用updateMethod
中的GetListing()
。所以GetListing
的签名将如下所示:
public void GetListing(string url,int ID)
{
//Some code here
int status=1; // this will be the value of status
updateMethod(ID, status); // this will call the updateMethod
}
updateMethod()将是这样的;
updateMethod(int ID,int Status)
{
// do something
}
答案 1 :(得分:-1)
在您的类的对象中创建更新方法,在对象列表类下创建对象,然后为该方法指定值