Explore >> Select a destination


You are here

bobobobo.wordpress.com
| | connorberry.com
11.9 parsecs away

Travel
| | Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);...
| | csharp.christiannagel.com
13.3 parsecs away

Travel
| | To combine multiple objects of the same type, you can use arrays. To combine multiple objects of different types, tuples can be used. Tuples allow to return multiple results without the need to create a custom class, and without the need to specify out or ref parameters. The Tuple type has been available with .NET...
| | hownot2code.wordpress.com
16.0 parsecs away

Travel
| | C# 11 is coming, so we're going to explore its new features in detail. You may find these new features pretty curious even though there are not that many of them. Today let's take a closer look at the generic math support, raw string literals, the required modifier, the type parameters in attributes, and more....
| | blog.waleedkhan.name
68.3 parsecs away

Travel
| Intended audience Current software engineers seeking information for their own job search or negotation. People curious about...