Skip to content

Commit

Permalink
Adding missing ReadMe.md file for few samples. (dotnet#1070)
Browse files Browse the repository at this point in the history
* Adding missing ReadMe.md file for few samples

* Update csharp/branches-quickstart/README.md

Committing the change which removes the locale from the URL links.

Co-Authored-By: Bill Wagner <[email protected]>

* Update csharp/classes-quickstart/README.md

Committing the change which removes the locale from the URL links.

Co-Authored-By: Bill Wagner <[email protected]>

* Update csharp/list-quickstart/README.md

Committing the change which removes the locale from the URL links.

Co-Authored-By: Bill Wagner <[email protected]>

* Update csharp/list-quickstart/README.md

Committing the change which removes the locale from the URL links.

Co-Authored-By: Bill Wagner <[email protected]>

* Update csharp/numbers-quickstart/README.md

Committing the change which removes the locale from the URL links.

Co-Authored-By: Bill Wagner <[email protected]>
  • Loading branch information
balaji-dabbara and BillWagner committed Jul 10, 2019
1 parent 6005a16 commit 79bc4ef
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 0 deletions.
22 changes: 22 additions & 0 deletions csharp/branches-quickstart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
C# Branches and Loops Sample
================

This sample is part of the [Branches and Loops tutorial](https://docs.microsoft.com/dotnet/csharp/tutorials/intro-to-csharp/branches-and-loops-local)
for learning C# features. Please see that topic for detailed steps on the code
for this sample.

Key Features
------------

This sample demonstrates usage of if-else branches to make decisions in the execution path, loops (while, do-while and for) to perform repeatable operations.

Build and Run
-------------

To build and run the sample, type the following two commands:

`dotnet restore`
`dotnet run`

`dotnet restore` restores the dependencies for this sample.
`dotnet run` builds the sample and runs the output assembly.
22 changes: 22 additions & 0 deletions csharp/classes-quickstart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
C# Classes and Objects Sample
================

This sample is part of the [Classes and Objects tutorial](https://docs.microsoft.com/dotnet/csharp/tutorials/intro-to-csharp/introduction-to-classes)
for learning C# features. Please see that topic for detailed steps on the code
for this sample.

Key Features
------------

This sample demonstrates introduction of object oriented programming with classes and objects in C#, which explains about creation and usage of classes, objects, constructors, properties and methods.

Build and Run
-------------

To build and run the sample, type the following two commands:

`dotnet restore`
`dotnet run`

`dotnet restore` restores the dependencies for this sample.
`dotnet run` builds the sample and runs the output assembly.
22 changes: 22 additions & 0 deletions csharp/list-quickstart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
C# List Collections Sample
================

This sample is part of the [List Collections tutorial](https://docs.microsoft.com/dotnet/csharp/tutorials/intro-to-csharp/arrays-and-collections)
for learning C# features. Please see that topic for detailed steps on the code
for this sample.

Key Features
------------

This sample demonstrates management of data collections using generic list type which explains about creation of generic [List&lt;T&gt;](https://docs.microsoft.com/dotnet/api/system.collections.generic.list-1) type. It also explains about modification, searching and sorting of list items.

Build and Run
-------------

To build and run the sample, type the following two commands:

`dotnet restore`
`dotnet run`

`dotnet restore` restores the dependencies for this sample.
`dotnet run` builds the sample and runs the output assembly.
22 changes: 22 additions & 0 deletions csharp/numbers-quickstart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
C# Numbers Sample
================

This sample is created during the [Numbers in C# tutorial](https://docs.microsoft.com/dotnet/csharp/tutorials/intro-to-csharp/numbers-in-csharp-local)
for learning C# features. Please see that topic for detailed steps on the code
for this sample.

Key Features
------------

This sample demonstrates about numbers and math operations on integer, floating point numbers in C# and also explains about precedence of the different mathematical operations.

Build and Run
-------------

To build and run the sample, type the following two commands:

`dotnet restore`
`dotnet run`

`dotnet restore` restores the dependencies for this sample.
`dotnet run` builds the sample and runs the output assembly.

0 comments on commit 79bc4ef

Please sign in to comment.