L
luke_airig
Microsoft Development Environment 2003 Version 7.1.3088
Microsoft .NET Framework 1.1 Version 1.1.4322
I am trying to modify the value of a variable in the Command Window
(immediate mode) but I am getting an error.
Here is the code snippet:
U_Appr_InfoDS.U_APPR_INFODataTable dt =
da.GetAllAppraiserInfo(this.LoanNumber);
if (dt.Rows.Count > 0) //My breakpoint is set here...
Here are the contents of the Command Window:
dt.Rows.Count=1
error: cannot assign '1' into 'dt.Rows.Count'
Can anyone give some insight to this problem or recommend a solution?
TIA
Luke
Microsoft .NET Framework 1.1 Version 1.1.4322
I am trying to modify the value of a variable in the Command Window
(immediate mode) but I am getting an error.
Here is the code snippet:
U_Appr_InfoDS.U_APPR_INFODataTable dt =
da.GetAllAppraiserInfo(this.LoanNumber);
if (dt.Rows.Count > 0) //My breakpoint is set here...
Here are the contents of the Command Window:
dt.Rows.Count=1
error: cannot assign '1' into 'dt.Rows.Count'
Can anyone give some insight to this problem or recommend a solution?
TIA
Luke