Skip to content
This repository was archived by the owner on Apr 11, 2021. It is now read-only.

Commit d49f184

Browse files
add readme files
1 parent 05ade82 commit d49f184

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

Async/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Readme - Code Samples for Chapter 15, Asynchronous ProgrammingThis chapter contains these samples:* Foundations* ErrorHandling* AsyncPatternsWPFThe Foundations and ErrorHandling samples show core features of using the async/await keywords with C#.The AsyncPatternsWPF demonstrates the advantages of the async/await keywords and shows different async patterns that are used with .NET. To run the application, you need to request a BING key and add it to the BingRequest.cs file in the AsyncLib project, and a Flickr app-id to the file FlickrRequest. You can also request just one of these keys, and just enable the corresponding functionality in the application.
1+
# Readme - Code Samples for Chapter 15, Asynchronous ProgrammingThis chapter contains these samples:* Foundations (changing synchronous methods to async, continuation)* ErrorHandling (error handling with async methods)* AsyncPatternsWPF (synchronous .vs. asynchronous, using the asynchronous pattern, event-based async pattern, and task-based async pattern)The Foundations and ErrorHandling samples show core features of using the async/await keywords with C#.The AsyncPatternsWPF demonstrates the advantages of the async/await keywords and shows different async patterns that are used with .NET. To run the application, you need to request a BING key and add it to the BingRequest.cs file in the AsyncLib project, and a Flickr app-id to the file FlickrRequest. You can also request just one of these keys, and just enable the corresponding functionality in the application.

Collections/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Readme - Code Samples for Chapter 10, Strings and Regular ExpressionsThis chapter contains the following code samples:* StringSample (using string methods, StringBuilder)* StringFormats (date and number formats, defining a custom format, *IFormattable*)* RegularExpressionPlayground (using regularexpressions, *Regex*)To build and run the .NET Core samples, please install* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!
1+
# Readme - Code Samples for Chapter 11, CollectionsThis chapter contains the following code samples:* ListSamples (using `List<T>`, `IComparer<T>`, predicate)* QueueSample (using `Queue<T>`)* LinkedListSample (using `LinkedList<T>`)* SortedListSample (using `SortedList<T>`)* DictionarySample (using `Dictionary<TKey, TValue>`)* SetSample (using `HashSet<T>`)* StackSample.(using `Stack<T>`)* LookupSample (using `ILookup`)To build and run the .NET Core samples, please install:* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!

ErrorsAndExceptions/Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Readme - Code Samples for Chapter 14, Errors and ExceptionsThis chapter contains the following code samples:* SimpleExceptions (`try`, `catch`, and `throw`)* ExceptionFilters (new C# 6 feature, filtering with `when`)* RethrowExceptions (rethrowing exceptions)* SolicitColdCall (user-defined exceptions)* CallerInformation (using `CallerLineNumber`, `CallerFilePath`, `CallerMemberName`)To build and run the .NET Core samples, please install:* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!

LINQ/Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Readme - Code Samples for Chapter 13, Language Integrated QueryThis chapter contains the following code samples:* LinqIntro (showing the foundations of LINQ, showing LINQ clauses, and LINQ with extension methods)* EnumerableSample (all the features of LINQ including filtering, grouping, joining, aggregation, lookups, using untyped collections, partitioning, compound from, and more)* ParallelLinqSample (using parallel features including partitioners and cancellation)* ExpressionTreeSample (working with expression trees)To build and run the .NET Core samples, please install:* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!

SpecialCollections/Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Readme - Code Samples for Chapter 12, Special CollectionsThis chapter contains the following code samples:* BitArraySample (using `BitArray` and working with bits)* BitVectorSample (using `BitVector32`, working with masks and sections)* ObservableCollectionSample (using `ObservableCollection<T>` to show change notifications)* ImmutableCollectionSample (using `ImmutableArray<T>` and `ImmutableList<T>` as well as builders)* PipelineSample (using `BlockingCollection<T>`, `ConcurrentDictionary<TKey, TValue>` and tasks to work with pipelines)To build and run the .NET Core samples, please install:* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!

StringsAndRegularExpressions/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Readme - Code Samples for Chapter 11, CollectionsThis chapter contains the following code samples:* ListSamples (using *List<T>*, *IComparer<T>*, predicate)* QueueSample (using *Queue<T>*)* LinkedListSample (using *LinkedList<T>*)* SortedListSample (using *SortedList<T>*)* DictionarySample (using *Dictionary<TKey, TValue>*)* SetSample (using *HashSet<T>*)* StackSample.(using *Stack<T>*)* LookupSample (using *ILookup*)To build and run the .NET Core samples, please install* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!
1+
# Readme - Code Samples for Chapter 10, Strings and Regular ExpressionsThis chapter contains the following code samples:* StringSample (using string methods, *StringBuilder*)* StringFormats (date and number formats, defining a custom format, *IFormattable*)* RegularExpressionPlayground (using regularexpressions, *Regex*)To build and run the .NET Core samples, please install* Visual Studio 2015 Update 2* .NET Core RC2* NuGet Extensions for Visual StudioPlease download and install the tools from [.NET Core downloads](https://www.microsoft.com/net/core#windows). You will find an Visual Studio official MSI installer for .NET Core, and the NuGet Manager extension for Visual Studio. The current version of this sample is built with .NET Core RC2. When RTM is available, the sample code will be updated.For code comments and issues please check [Professional C#'s GitHub Repository](https://github.com/ProfessionalCSharp/ProfessionalCSharp6)Thank you!

0 commit comments

Comments
 (0)