Tag Archives: C#

Property get vs get-like function

I was wondering if there are any differences between using property getter and simple get function.. well there’s no difference, but lets see Results: There is no difference between IL codes of property get and get function as we see … Continue reading

Posted in C# | Tagged , | Leave a comment

Initialization and access performance tests

I was wondering many times whether to use structure or class, how I should initialize structure, and ofcourse about array vs list accessibility issue. There is a lot of tests on the web, however I decided to manage some sort … Continue reading

Posted in C# | Tagged , | 1 Comment