Changes between Version 4 and Version 5 of StandardLibraryExtensionMethods
- Timestamp:
- 02/04/09 04:03:52 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StandardLibraryExtensionMethods
v4 v5 28 28 def split(chars as IList<of char>) as List<of String> 29 29 30 30 31 extend System.Collections.IList 31 32 … … 39 40 .count == old.count 40 41 42 41 43 extend IEnumerable<of T> 42 44 43 45 def toList as List<of T> 44 46 return List<of T>(this) 47 45 48 46 49 extend IList<of T>