Click here to Skip to main content
15,897,032 members

Comments by derodevil (Top 42 by date)

derodevil 10-Aug-12 13:34pm View    
Thank you philip for answering my question. Thanks a lot.
derodevil 10-Aug-12 13:34pm View    
Ok, thank you philip for answering my question.
derodevil 10-Aug-12 13:33pm View    
Thank you for the solution. I'll try it.
derodevil 8-Aug-12 13:22pm View    
I still can't access the property values. t.Name error, t has no property named Name and DatePaid.
derodevil 8-Aug-12 12:58pm View    
Yes, you're right. And how to get the values?
this code still generates errors
string nm = string.Empty;
string dp = string.Empty;
foreach(var t in array)
{
nm = t.Name;
dp = t.DatePaid;
}