.NET code generation

Short article on .NET code generators: .NET code generators enable rapid application development. Only one tool is covered, “DeKlarit”, which you can view a nifty Flash demo on here.

I used the wsdl tool yesterday to generate a C# web service client stub, how handy is that tool? The command line switches allow you to customize the namespace, the generated file name, the name of the key to retrieve from the config file for the webservice endpoint, and the language (C#, VB.NET)… etc…

> wsdl /urlkey:name_of_my_key /n:com.mypackage /o:FileName.cs /l:CS http://hostname/path/mywebservice.asmx

You can then start using the generated class in your code immediately. Very cool.

One thought on “.NET code generation”

Leave a Reply

Your email address will not be published. Required fields are marked *