blah blah blah is here! blah blah » Close

1
votes
1 answers

Encoding troubles

I am writing an Outlook VSTO project which is extracting the html body of an html format email, sending it as a string via a web service to my web server with the idea that I can ultimately use the mark up to give an exact representation of ...

1
votes
1 answers

C# delegate use

Hi, I got this code sample for thread starting from MSDN - [code] void StartThread() { System.Threading.Thread t1 = new System.Threading.Thread (delegate() { System.Console.Write("Hell ...

0
votes
1 answers

C# generic method type query

Hi, I've come across the following code which I am finding it a little hard to get my head around, hope it's not too confusing out of context - [code] protected abstract List<TDataEntity> Read<TDataFilter>(ISelectCommand< ...

1
votes
1 answers

Anonymous delegate expressions

Hi, the following code runs ok - [code]public delegate void IntAction(int x); class Program { static void Main(string[] args) { IntList xs = new IntList(); xs.Add(1); ...

Feedback