C Sharp
(Redirected from C)
- The correct title of this article is C#. The substitution or omission of a # sign is because of technical restrictions.
Contents |
isNumeric Function
http://codebetter.com/blogs/grant.killian/archive/2005/01/27/48340.aspx
String vs. StringBuilder
Article: http://www.codeproject.com/KB/cs/string.aspx
Generics
Using foreach on a Dictionary<TKey, TValue>:
foreach (KeyValuePair<int, string> kvp in myDictionary) {...}
Reflection
- Article: http://articles.techrepublic.com.com/5100-10878_11-6099345.html
- Article: http://www.ayende.com/Blog/archive/2006/05/22/7579.aspx
- Article: http://www.java2s.com/Code/CSharp/Development-Class/Demonstratedynamicallyinvokinganobject.htm
- Article: http://www.java2s.com/Code/CSharp/Development-Class/Getallimplementedinterfacefromaclass.htm
- Creating generic type object dynamically using reflection
- Using Reflection to Bind Business Objects to ASP.NET Form Controls
- MSDN on the AssemblyName Class
- Fast Dynamic Property Access with C#
Enum<T>
A nice helper class for Enum types: