dotnet try
Runnable .NET code on your site
Last updated
Was this helpful?
Runnable .NET code on your site
Last updated
Was this helpful?
Before you get can started creating interactive documentation, you will need to install the following:
The
The
The global tool
Updating to the latest version of the tool is easy. Run the following command:
master
To install the latest preview build from master, first uninstall the existing version of the tool:
Then, install from the preview package feed:
You can get started using either one of the options below.
dotnet try demo
Create a new folder.
cd
to your new folder.
Run command dotnet try demo
: This will load our interactive dotnet try getting started tutorial.
The tutorials below work you through the following:
Creating a new Try .NET project.
Display interactive snippets using C# regions.
Creating Sessions
Verifying your projects: dotnet try verify
a compiler for your documentation.
Passing Arguments
Using read only snippets
Go to the terminal and create a folder called mydoc
.
cd
to the mydoc
folder and create a new console app with the following command:
This will create a console app with the files myApp.csproj
and Program.cs
.
Open the mydoc
folder in Visual Studio Code.
Create a file called doc.md
. Inside that file, add some text and a code fence:
Now, navigate to the mydoc
folder in your console and run the following command:
You have created your first C# interactive developer experience. You should now be able to run your console app and see the result in the browser.
Clone the repo.
Follow the quick steps listed to get started.
Return to
Advanced c# LINQ tutorials.