I've seen this question about advice for C# programmers writing Python code but I am going the opposite direction.
What are some tips, tricks, caveats for a Python programmer writing C# code?
I've seen this question about advice for C# programmers writing Python code but I am going the opposite direction.
What are some tips, tricks, caveats for a Python programmer writing C# code?
Here are some examples I meant by my question:
another possibility:
"abc".Where((x,i) => true).Select((x, i) => string.Format("{0}: {1}", i, x))
0: a
1: b
2: c
List<Foo> fooList = new List<Foo>();
IEnumerable<Foo> extract = from foo in fooList where foo.Bar > 10 select Foo.Name.ToUpper();