IAGareth

Stories kicked by IAGareth

Speeding up GetPixel with Unsafe Code(improperargument.com)

submitted by IAGarethIAGareth(5) 3 years, 2 months ago

Examines how the GDI+ GetPixel method can be replaced with unsafe code for a huge speed increase, with performance examples. C#. read more...

add a comment |category: |Views: 111

tags: another

Exploring C# Boxing (dijksterhuis.org)

submitted by martijnmartijn(445) 3 years, 2 months ago

Boxing in C# has little to do with Saturday night television and quite a bit more however with that part-time job at the warehouse you had as a student. It is an important concept in C# that is related to how the compiler handles different kinds of variables in memory. Knowing how the compiler handles the various types allows you to avoid unexpected side effects in your code. This article explains what boxing is, how it works and how it can negatively effect your code if you don’t pay attention to it. read more...

2 comments |category: |Views: 450

tags: another