Hi,
In the below example I need to add value 0 in the else part.
Ex:
if (this.InvoiceChild[i].InvoiceChildDetails[j].AmountDue != 0)
{
xInstallment.SetAttribute("I_Display_Fee_Component_ID", this.InvoiceChild[i].InvoiceChildDetails[j].DisplayFeeComponentId.ToString());
}
else
{
xInstallment.SetAttribute("I_Display_Fee_Component_ID", (this.InvoiceChild[i].InvoiceChildDetails[j].DisplayFeeComponentId).ToString()); // Here I want to add value 0.
}
Thanks
Karthik