¡@

Home 

c# Programming Glossary: jon

Order of LINQ extension methods does not affect performance?

http://stackoverflow.com/questions/10110013/order-of-linq-extension-methods-does-not-affect-performance

only ask for the first two it only fetches the first two. Jon Skeet does a nice bit on stage. Imagine you have three people...

A generic error occurred in GDI+, JPEG Image to MemoryStream

http://stackoverflow.com/questions/1053052/a-generic-error-occurred-in-gdi-jpeg-image-to-memorystream

C# Reading a File Line By Line

http://stackoverflow.com/questions/1271225/c-sharp-reading-a-file-line-by-line

newRecord parse line yield return newRecord or to make Jon happy static IEnumerable string ReadFrom string file string..

How to wait for thread to finish with .NET?

http://stackoverflow.com/questions/1584062/how-to-wait-for-thread-to-finish-with-net

from what I've read. 3. Fire an event See this page by Jon Skeet about events and multi threading it's possible that an..

Which C# 4.0 Book would you purchase, and why? [closed]

http://stackoverflow.com/questions/2181729/which-c-sharp-4-0-book-would-you-purchase-and-why

recommend that you buy the MEAP Early Access Edition of Jon Skeet's C# in Depth 2nd edition which is updated to include..

Why .NET String is immutable? [duplicate]

http://stackoverflow.com/questions/2365272/why-net-string-is-immutable

change my name what has changed is which name I am using Jon remains immutable and other Jons will be unaffected. Copying.. is which name I am using Jon remains immutable and other Jons will be unaffected. Copying is fast and simple to create a..

Reading Xml with XmlReader in C#

http://stackoverflow.com/questions/2441673/reading-xml-with-xmlreader-in-c-sharp

it works very well. EDIT from radarbob reformatted by Jon although it's not quite clear which read too far problem is..

How is Generic Covariance & Contra-variance Implemented in C# 4.0?

http://stackoverflow.com/questions/245607/how-is-generic-covariance-contra-variance-implemented-in-c-sharp-4-0

can be assigned to List object . How could that be In Jon Skeet's book C# in Depth it is explained why C# generics doesn't..

Tips for optimizing C#/.NET programs [closed]

http://stackoverflow.com/questions/2473666/tips-for-optimizing-c-net-programs

tip I found the help I did long ago at here on Jon Skeet's site . c# .net optimization share improve this question..

Merging dictionaries in C#

http://stackoverflow.com/questions/294138/merging-dictionaries-in-c-sharp

dictionaries EDIT Got a cool solution from JaredPar and Jon Skeet but I was thinking of something that handles duplicate..

Access to Modified Closure (2)

http://stackoverflow.com/questions/304258/access-to-modified-closure-2

once per startup. For now it seems to work alright. As Jon has mentioned about counterintuitive result in some case. So..

Why can't I define a default constructor for a struct in .NET?

http://stackoverflow.com/questions/333829/why-cant-i-define-a-default-constructor-for-a-struct-in-net

or will the CLR defined default constructor be called Edit Jon Skeet answered To use your example what would you want to happen..

How to check if an object is nullable?

http://stackoverflow.com/questions/374651/how-to-check-if-an-object-is-nullable

are two types of nullable Nullable T and reference type. Jon has corrected me that it is hard to get type if boxed but you..

C# - The foreach identifier and closures

http://stackoverflow.com/questions/512166/c-sharp-the-foreach-identifier-and-closures

threads.Add thread thread.Start Update As pointed out in Jon Skeet's answer this doesn't have anything specifically to do..

Write Array to Excel Range

http://stackoverflow.com/questions/536636/write-array-to-excel-range

and this is therefore very time consuming. Many thanks Jon c# excel interop share improve this question This is an..

Calling null on a class vs Dispose()

http://stackoverflow.com/questions/574019/calling-null-on-a-class-vs-dispose

on expanding my knowledge on this by reading CLR via C# Jon Skeet's books posts and more . Anyway what is the difference..

C# Events and Thread Safety

http://stackoverflow.com/questions/786383/c-sharp-events-and-thread-safety

might also require the event member to be volatile but Jon Skeet states in his answer that the CLR doesn't optimize away.. Or am I still missing something Surely it must be that as Jon Skeet suggested this is just .NET 1.x advice that hasn't died..

Using async-await on .net 4

http://stackoverflow.com/questions/9110472/using-async-await-on-net-4

as IDE Which one has fewer code gen bugs Looking at Jon Skeet's blog the VS2012 Preview uses a never code generator..