lamp

Browse by Tags

Sorry, but there are no more tags available to filter with.
WebService Prefix
27 January 10 10:23 AM | Frederick.Chapleau | with no comments
When adding a web service to your 2.0 .NET project, always begin by the same prefix, so, when the code will be generated, the namespace using will always be the same... like WebService.TheWSName and WebService.TheSecondWSName... -f.
Filed under:
About Webservices Names
27 June 09 05:11 PM | Frederick.Chapleau | with no comments
Ok, once again, if classes names of classes should not have the name class inside them, why Webservices should have “Service”, “Webservices” or “Service” in their names? My hint on that, is that the name of the web services should relevant to its underneath...
Filed under:
Commenting with ///
20 May 09 10:32 AM | Frederick.Chapleau | with no comments
(Almost) everybody knows that typing /// in front of a method generates XML comments. But it does not apply only to method, but to classes, namespaces, and property accessors. ... and there are 11 more tags! <c>, <code>, <list>, <listheader>...
Filed under:
Using region instead of single line comments
18 April 09 02:15 PM | Frederick.Chapleau | with no comments
Documenting code can be very long, and keeping the comments in-sync with the code is even harder. A solution for that is to use region, instead of comments. This way of documenting has two purpose comment the code, and scope the comment. And also, this...
Filed under: