Search Result Sortorder:

OrderBy(string sortExpression)  Submitted by C.F.Meijers on 2008-4-25 Orders a list based on a sortexpression. Useful in object databinding scenarios where the objectdatasource generates a dynamic sortexpression (example: "Name desc") that specifies the property of the object sort on.Language C# Type System.Collections.Generic.IEnumerable<T> Downloads 941
Pivot  Submitted by Fons Sonnemans on 2009-1-21 Groups the elements of a sequence according to a specified firstKey selector function and rotates the unique values from the secondKey selector function into multiple values in the output, and performs aggregations. Language C# Type System.Collections.Generic.IEnumerable<T> Downloads 720
Encrypt & Decrypt  Submitted by Mark de Rover on 2008-1-02 Encrypt and decrypt a string using the RSACryptoServiceProvider.Language C# Type System.String Downloads 698
OrderBy  Submitted by Adam Weigert on 2008-3-03 OrderBy is nice, except if you want to sort by multiple properties or want an easy way to distinguish between ascending and descending.Language C# Type System.Collections.Generic.IEnumerable<T> Downloads 197
Right  Submitted by C.F. Meijers on 2007-12-11 Returns the last few characters of the string with a length specified by the given parameter. If the string's length is less than the given length the complete string is returned. If length is zero or less an empty string is returned Language C# Type System.String Downloads 163
ToCSV  Submitted by Muhammad Mosa on 2009-12-16 An extension method that produce a comman separated values of string out of an IEnumerable<T>. This would be useful if you want to automatically generate a CSV out of integer, string, or any other primative data type collection or array. I provided 2 overloads of this method. One of them accepts a separator and the other uses comma "," as default separator. Also I am using another shortcut extension method for foreach loop.Language C# Type System.Collections.Generic.IEnumerable<T> Downloads 158
DateDiff  Submitted by Jonnidip on 2009-6-08 DateDiff in SQL style. The following DateParts are implemented: - "year" (abbr. "yy", "yyyy") - "quarter" (abbr. "qq", "q") - "month" (abbr. "mm", "m") - "day" (abbr. "dd", "d") - "week" (abbr. "wk", "ww") - "hour" (abbr. "hh") - "minute" (abbr. "mi", "n") - "second" (abbr. "ss", "s") - "millisecond" (abbr. "ms")Language C# Type System.DateTime Downloads 152
Clone<T>()  Submitted by Carlos Alessandro Ribeiro on 2009-7-21 Makes a copy from the object.Language C# Type System.Object Downloads 133
CreateDirectory  Submitted by Earljon Hidalgo on 2008-3-26 Recursively create directory based on the given path. If the given path doesn't exist, it will create until all the folders in the path are satisfied.Language C# Type System.IO Downloads 132
Truncate  Submitted by Earljon Hidalgo on 2008-4-23 Truncate the specified string based on the given length. Replaces the truncated data to "..."Language C# Type System.String Downloads 129
First Previous 1 2 3 4 5  ... Next Last