by Bar Zohan
5. April 2010 21:12
For sorting IQueryable's
[code:c#]
public enum SortDirection { Ascending, Descending }
public static IQueryable<T> DynamicSort<T>(this IQueryable<T> data , string columnName, SortDirection direction) { ...
[More]
by Bar Zohan
21. January 2010 02:06
A listview that creates it's column structure and populates it's rows directly from a generic list.
[More]
by Bar Zohan
21. January 2010 01:40
Briefing:
In this article I'm going to implement a simple plug in structured calculator. Calculator will take two numeric inputs from the user and user will select which calculator plug in to use. After that user will hit calculate button and our little program will ask the plug in to calculate tho...
[More]