| .NET Matters: Const in C#, Exception Filters, IWin32Window, and More |
| MSDN |
| Const in C#, Exception Filters, IWin32Window, and More |
|
| 10 Tips for Great .NET Programming |
| .NET Magazine |
| I’ve compiled a list of 10 tips to make your .NET development more effective and productive. To help as many developers as possible, the tips span the technology’s whole spectrum—from ADO.NET to ASP.NET, from the CLR to the Framework, and from Windows Forms to Web Services. Here they are, counting up to the ones I anticipate will have the most impact. |
|
| C# Compiler |
| The Code Project |
| CSCompiler is a simple application for compiling single file C# source code. It was written in C#. Of course i didn't wrote a whole C# compiler. Instead I've used interfaces provided by .NET platform. |
|
| Code Generation in the .NET Framework Using XML Schema |
| MSDN |
| Learn the difference between typed datasets and classes generated by the xsd.exe tool. Extend this process by reusing the infrastructure classes supporting it, staying compatible with the XmlSerializer. |
|
| Genetic Algorithms: Survival of the Fittest: Natural Selection with Windows Forms |
| MSDN |
| Breed better programs |
|
| Inherited Class Skeleton Generator |
| C# Corner |
| Inherited Class Skeleton Generator (ICSG) is a handy tool, which can be used to make your programming under .NET productive. It quickly generates class skeleton with needed members. ICSG is written in C# and utilizes Reflection and CodeDom namespaces of .NET. |
|
| JIT Coding |
| C# Corner |
| One not so well known feature of .NET platform is possibility to invoke compiler and practically create code and assembly from running instance of application. It is possible to do that in two ways. First one is a bit simpler and involves namespaces System.CodeDom and System.CodeDom.Compiler, second one is more efficient and utilizes namespace System.Reflection.Emit. |
|
| PRB: "Compiler Error Message: CS1595" Error Message When You Use the C# Compiler to Compile an ASP.NET Resource |
| http://www.kbalertz.com/ |
| (318274) - When you use the C# compiler (Csc.exe) to compile an ASP.NET resource, you may receive a compiler error message that is similar to one of the following error messages: Compiler Error Message: CS1595: 'System.Collections.ArrayList' is defined in... |
|
| VS.NET CodeDOM-Based Custom Tool for String Resource Management |
| The Code Project |
| A VS.NET custom tool, created with the help of CodeDOM and EnvDTE, used to facilitate management of resource strings via IntelliSense and error checking in VS.NET environment |
|