Search Results

0
votes

What language should I learn to give me something very different from C#?

Maybe F# or the Semantic Web. The Semantic Web is not really a language but it changes your world view. Or learn JavaScript closures. …
0
votes

IronPython For Unit Testing over C#

Very interesting. What would happen if you write all your code with IronPython (not just the unit tests)? Would you end up with approximately 10 times less code? Maybe I should le …
2
votes

C# 3.0 Auto-Properties - useful or not?

I always create properties instead of public fields because you can use properties in an interface definition, you can't use public fields in an interface definition. …
0
votes

Select unique XElements (by attribute) with a filter using LinqToXml

How can you do LINQ without lambdas? Lambdas are a key element of LINQ. What's wrong with lambdas? …
0
votes

Select unique XElements (by attribute) with a filter using LinqToXml

XElement ele = XElement.Parse(@"<items><item cat=""1"" owner=""14"">bla</item><item cat=""1"" owner=""9"">bla</item>" + @"< …