Tag Archives: C#

WCF Tracing basics

Pretty old but still handy configuration. IIS + ASP.NET only. http://msdn.microsoft.com/en-us/library/ms733025.aspx <configuration> <system.diagnostics> <sources> <source name=”System.ServiceModel” switchValue=”Information, ActivityTracing” propagateActivity=”true”> <listeners> <add name=”traceListener” type=”System.Diagnostics.XmlWriterTraceListener” initializeData= “c:\log\Traces.svclog” /> </listeners> </source> </sources> </system.diagnostics> </configuration>

Posted in Default | Tagged , , , | Leave a comment

Peak at C# 4.0: optional parameter, named parameter and method resolution

Optional and named parameter is an awesome feature introduced in C# 4.0. Now C# combines some fancy features from dynamic languages like Python again (var knows why I say again. And the more dynamic dynamic is another topic, LOL). Please … Continue reading

Posted in Default | Tagged , | Leave a comment

2009: A dynamic future of C#

70s coders learn C, Pascal, COBOL(one of the best IT jobs in economic crisis) 80s coders learn C 90s coders learn C++, Java, Delphi 21-century (long time no see this hot word during 1999-2001)  coders learn C#? – A homemade … Continue reading

Posted in Default | Tagged , | Leave a comment