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

Commit 2a6318b

Browse files
add readme files
1 parent 847448a commit 2a6318b

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

Collections/Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +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!

Delegates/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Readme - Code Samples for Chapter 9, Delegates, Lambda, and EventsThis chapter contains the following code samples:* GetAStringDemo (declaring a *delegate* to a simple method)* SimpleDelegates (declaring and instantiating delegates)* BubbleSorter (Sort method using a Func<T> delegate)* MulticastDelegates (invoking multiple methods with a single delegate)* LambdaExpressions (creating lambda expressions)* AnonymousMethods (using the *delegate* keyword to declare an anonymous method)* EventsSample (subscribing and publishing events, *event* keyword)* WeakEvents (using IWeakEventListener) [^1]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]: The sample WeakEvents needs the assembly WindowsBase, and thus need the full .NET Framework.
1+
# Readme - Code Samples for Chapter 9, Delegates, Lambda, and EventsThis chapter contains the following code samples:* GetAStringDemo (declaring a *delegate* to a simple method)* SimpleDelegates (declaring and instantiating delegates)* BubbleSorter (Sort method using a Func<T> delegate)* MulticastDelegates (invoking multiple methods with a single delegate)* LambdaExpressions (creating lambda expressions)* AnonymousMethods (using the *delegate* keyword to declare an anonymous method)* EventsSample (subscribing and publishing events, *event* keyword)* WeakEvents (using IWeakEventListener)The sample WeakEvents needs the assembly WindowsBase, and thus need the full .NET Framework.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!

Inheritance/Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Readme - Code Samples for Chapter 4, InheritanceThis chapter contains the following code samples:* VirtualMethods (declare base types using *abstract*, *virtual*, *override*)* InheritanceWithConstructors (inheritance with non-default constructors)* UsingInterfaces (declaring and using interfaces)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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +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!

0 commit comments

Comments
 (0)