Click here to Skip to main content
15,899,679 members

Comments by Pushkar Prabhu (Top 8 by date)

Pushkar Prabhu 18-Nov-18 14:06pm View    
any should be used instead of Exists.
Exists works on List<t> where as Any works on IEnumerable<t>.
Pushkar Prabhu 14-May-18 11:56am View    
SelectMany<t> returns IEnumerable<t>. We can not use Exists on IEnumerable<t>. It is available only on List<t>. So i have used ToList<t> to convert IEnumrable<t> to List<t>.
Pushkar Prabhu 4-Oct-15 14:17pm View    
Thanks.. I will start with reading ASP.Net books :)
Pushkar Prabhu 31-May-15 6:11am View    
1.I can have more than one session in single connection but one session cannot have multiple connections right?
2.Can one session have multiple transactions?
Pushkar Prabhu 30-Mar-15 9:16am View    
Clipboard.SetText(htmlText, TextDataFormat.Html)

This line also adds html to clipboard. But some how i am not able transfer data from clipboard to word document.