Skip to content

Instantly share code, notes, and snippets.

@eriawan
Last active July 6, 2017 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eriawan/948a140b338c5ee7416287a6caff51a7 to your computer and use it in GitHub Desktop.
Save eriawan/948a140b338c5ee7416287a6caff51a7 to your computer and use it in GitHub Desktop.

This walkthrough is a beginner's guide to learning basic interactive concepts and how to navigate the C# Interactive Window. To learn more about the Interactive window, watch this video or check out our documentation.

Note: This walkthrough is adapted from Bill Chiles' original. Thanks, Bill!

Introduction: What is Interactive?

With the new C# Interactive window, you get immediate feedback on what an expression will return or what an API call does. The Interactive window is much like the Immediate window, but the Interactive window has many improvements such as IntelliSense features and the ability to redefine functions and classes. After entering a code snippet at the REPL prompt, the code simply executes right away. You can enter statements and expressions, as well as class and function definitions. You do not need to create a project, define a class, define a Main, write your expression in a Console.WriteLine() call, and then enter the code for a bogus Console.ReadLine to keep the cmd.exe window alive. When you type each line of code that is a complete expression or construct and then press Enter, the code executes. If the entered code is incomplete when you press Enter, it does not execute, and you can continue entering code.

The Interactive window is a read-eval-print loop (or REPL). As you can see, REPLs are productivity enhancers that have long been the purview of dynamic and functional languages. The Roslyn REPL for C# brings all the goodness you associate with VS such as code-completion, syntax-coloring, Quick Fixes, etc., to the REPL experience.

To use this walkthrough, you must first install Visual Studio 2015 Update 1.

Walkthrough

This walkthrough demonstrates the following features or attributes of the C# Interactive window:

  • Launching REPL with default execution context
  • Using directives
  • History commands with Alt+UpArrow and Alt+DownArrow
  • Enter to execute if input is complete
  • Ctrl+Enter to force execution of current input, or fetch previous input if the caret is in a previous submission
  • Shift+Enter to insert a newline without executing the current input
  • Var declarations
  • Colorization, completion, param tips
  • Expression evaluation
  • Multi-line input
  • Multi-line history with editing
  • Shows redirecting Console I/O to REPL

Steps

  1. Open Visual Studio 2015 Update 1
  2. On the View menu, choose Other Windows and then C# Interactive. It is best to drag this to the document bay and dock the Interactive window at the bottom of the document bay. It is common to work in an editor buffer and the REPL, switching back and forth for entering and saving code snippets, particularly if you are writing a script.
  3. To honor our ancestry, let's enter the obligatory 'Hello World' program in the REPL. Type the following, and press Enter:
> Console.Write("Hello, World!")
  1. There are commands in the REPL that look like directives. The #help command describes common commands (input starting with #) and shortcuts for getting started:
> #help
  1. Type the following input, and then press Enter. Notice that IntelliSense completion helps while you type.
> using System.IO;

Then input the following command, which you can do by using Alt+UpArrow to invoke history, backspace to delete "IO;", then type "Net;", and press Enter.

> using System.Net;
  1. Enter the following partial statement without a semicolon at the end, and press Enter
> var url =

Because the statement is not yet complete, the REPL does not execute it, and the code continues to the next line. Paste in the following code, and then press Enter. This code is a continuation of the previous line.

"http://www.google.com/finance/historical?q=MSFT&output=csv";

Because the line is complete, pressing Enter at the end of the input executes the code.

  1. Now view the contents of the variable by entering it as an expression. Type just the variable name without a semicolon at the end:
> url
  1. Here's another way to view the results of an expression evaluation. Type the following, and press Enter.
> Console.Write("url: " + url)
  1. Enter the following lines into the Interactive window. The code uses a WebRequest instance to download data from the web site, and puts the result in the csv string variable. For more information and a similar example, see WebRequest Class.
> var request = WebRequest.Create(url);
> var response = request.GetResponse();
> var dataStream = response.GetResponseStream();
> var reader = new StreamReader(dataStream);
> var csv = await reader.ReadToEndAsync();
> reader.Close();
> dataStream.Close();
> response.Close();

Note that we can have asynchronous code inside the REPL. The REPL will wait for the async code to be evaluated before continuing.

  1. Now that we have some data we pulled, let's inspect the data briefly before moving forward. Enter the following line without a semicolon at the end:
> csv.Length

The REPL displays the length of the csv string on the next line.

  1. Ok, there's a lot of data, so maybe we can break it up. Let's see how many lines there are:
> csv.Split('\n').Length
  1. Still a lot of lines, so let's peek at the first couple of hundred characters and see if we can glean something of the string's structure or how long the lines are. Enter the following code:
> Console.Write(csv.Substring(0,200))

You'll see output similar to the following:

Date,Open,High,Low,Close,Volume

3-Jul-17,69.33,69.60,68.02,68.17,16165538

30-Jun-17,68.78,69.38,68.74,68.93,24161068

29-Jun-17,69.38,69.49,68.09,68.49,28918715

  1. Now we can see what the structure of the data is. Let's build a query to extract the volume from the last column (Skip(1) skips header row). You can use Shift+Enter at the end of a line to avoid executing the input until you’ve entered everything; Enter only evaluates if the expression looks complete:
var prices = csv.Split('\n').Skip(1)
   			  .Select(line => line.Split(','))
   			  .Where(values => values.Length == 7)
   			  .Select(values => new { date = DateTime.Parse(values[0]), 
  				   					  price = float.Parse(values[6]) });
  1. Let's print out a bit of the prices from the query. You can use Shift+Enter after the first to lines to avoid executing them immediately. If you use Enter inside the 'foreach' loop, the code won't execute until you type the final curly brace and then press Enter.
foreach (var p in prices.Take(10))
	  Console.WriteLine(p)

Here is what your final session should look like:

using System.IO;
using System.Net;

var url = "http://www.google.com/finance/historical?q=MSFT&output=csv";
var request = WebRequest.Create(url);
var response = request.GetResponse();
var dataStream = response.GetResponseStream();
var reader = new StreamReader(dataStream);
var csv = await reader.ReadToEndAsync();
reader.Close();
dataStream.Close();
response.Close();
var prices = csv.Split('\n').Skip(1)
                .Select(line => line.Split(','))
                .Where(values => values.Length >= 5)
                .Select(values => new {
                    date = values[0],
                    price = float.Parse(values[4])
                });
foreach (var p in prices.Take(10))
        Console.WriteLine(p);

You're done. Enjoy using the REPL and please provide feedback! If you are interested in learning more about the C# Interactive window, watch this video or check out our documentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment