Always Developing

always learning | always growing | always paging (7)

Enum iteration

Using Enum.GetValues to iteration through enum values


Read more...


Fast, potentially unsafe iteration

Using CollectionsMarshal, MemoryMarshal and Unsafe for fast looping


Read more...


EF7 GroupBy support

Entity Framework 7 adds supports for GroupBy as the final operator


Read more...


Unreachable code and UnreachableException

UnreachableException - the new exception which should never be thrown


Read more...


Determining bytes of memory allocated

Using GetAllocatedBytesForCurrentThread to get the allocated bytes in a thread


Read more...