C# lines of Code

Posted by matt on Stack Overflow See other posts from Stack Overflow or by matt
Published on 2010-06-07T19:48:27Z Indexed on 2010/06/07 19:52 UTC
Read the original article Hit count: 145

Filed under:
|

What does this do exactly?

var counts = new Dictionary<string, int>();
for (int i = 0; i < 10; i++)
counts[string.Format("STA Thread Queue Worker Thread No. {0}", i + 1)] = 0;

Thanks

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET