Skip to content

Commit

Permalink
Added README.md files for each library component
Browse files Browse the repository at this point in the history
  • Loading branch information
ravensorb committed Jun 4, 2017
1 parent 8eb52b1 commit 66c5733
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Invisionware.Collections.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26430.12
Expand All @@ -13,6 +12,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".misc", ".misc", "{B67DBE97-2A64-4E27-8878-698FC381DABD}"
ProjectSection(SolutionItems) = preProject
build.cake = build.cake
README.md = README.md
settings.json = settings.json
version.json = version.json
EndProjectSection
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ Invisionware Frmaework is a collection of utilities classes, extension methods,
## Collections
This portion of the Invisionware Framework is focused on enhancements to standard collections within the .NET frmaework

Add the following using statement
```c#
using Invisionware.Collections;
```

### Dictionary Extensions
The following outline the extension methods provided for the IDictionary<,> class

#### RenameKey
Provides a simple way to rename an existing key in a dictionary
Expand All @@ -21,6 +27,8 @@ Console.WriteLine(dict["newkey"]);
```
or
```c#
using Invisionware.Collections;

var dict = new Dictionary<int, string>();

dict[1234] = "value";
Expand Down

0 comments on commit 66c5733

Please sign in to comment.