Format my properites within the List

  • Thread starter Thread starter kavithma
  • Start date Start date
K

kavithma

Guest
Hi all,

my class looks like this


public class Invoice

{

int InvoiceId;

DateTime CreateDate;

DateTime ExpiredDate;

}


I have a list of Invoices within a List ,

and I need to format dd/mm/yyyy CratedDate, and ExpiredDate properties of my above class as those dates have time on it,


could some one please let me know how to format my above CraatedDate, ExpiredDate Properties within my list ?

thanks

Continue reading...
 
Back
Top