C
Curious
I have a C#.NET program that uses a delegate,
"BuildExistingReportFile". It's called in such a fashion:
IList lFiles = this.GetListFromStoredProcedure(
null,
Constants.StoredProcedures.SPcorReportInstanceFilesGet,
new BuildDelegate(new
ReportClosure(aReport).BuildExistingReportFile),
new SqlParameter("@ReportInstanceID",aReport.ID));
I don't see any parameter passed to "BuildExistingReportFile".
However, it's defined as below:
public object BuildExistingReportFile(IRecord aRecord)
{
\\blah blah
}
Now I want to add an integer type of parameter, "counter", to this
delegate. How can I pass this parameter in?
Thanks!
"BuildExistingReportFile". It's called in such a fashion:
IList lFiles = this.GetListFromStoredProcedure(
null,
Constants.StoredProcedures.SPcorReportInstanceFilesGet,
new BuildDelegate(new
ReportClosure(aReport).BuildExistingReportFile),
new SqlParameter("@ReportInstanceID",aReport.ID));
I don't see any parameter passed to "BuildExistingReportFile".
However, it's defined as below:
public object BuildExistingReportFile(IRecord aRecord)
{
\\blah blah
}
Now I want to add an integer type of parameter, "counter", to this
delegate. How can I pass this parameter in?
Thanks!