Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / WCF

WCF

WCF

Great Reads

by Tharaka MTR
A solution to the problem
by Vinayaka Krishna Shenoy
.NET Coding Best Practices - Vinayak's thumb rulesDo not hard code strings/ numerics. Instead of that use constants as shown below.Bad practice int Count; Count = 100; if( Count == 0 ) { // DO something… }Good practice int Count; Count = 100; private...
by Anil Kr. Sharma
.NET Framework 3.0 primer.
by Livio Francescucci
How to create an ASP.NET gridview AJAX enabled connected with WCF SOAP and REST webservices.

Latest Articles

by Tharaka MTR
A solution to the problem
by Vinayaka Krishna Shenoy
.NET Coding Best Practices - Vinayak's thumb rulesDo not hard code strings/ numerics. Instead of that use constants as shown below.Bad practice int Count; Count = 100; if( Count == 0 ) { // DO something… }Good practice int Count; Count = 100; private...
by Anil Kr. Sharma
.NET Framework 3.0 primer.
by Livio Francescucci
How to create an ASP.NET gridview AJAX enabled connected with WCF SOAP and REST webservices.

All Articles