diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/RowDictionary.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/RowDictionary.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs b/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs index 101ebefd..bbb97c25 100644 --- a/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs +++ b/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs | |||
@@ -7,13 +7,13 @@ namespace WixToolset.Core.WindowsInstaller | |||
7 | using WixToolset.Data.WindowsInstaller; | 7 | using WixToolset.Data.WindowsInstaller; |
8 | 8 | ||
9 | /// <summary> | 9 | /// <summary> |
10 | /// A dictionary of rows. Unlike the <see cref="RowIndexedCollection"/> this | 10 | /// A dictionary of rows. Unlike the RowIndexedList this |
11 | /// will throw when multiple rows with the same key are added. | 11 | /// will throw when multiple rows with the same key are added. |
12 | /// </summary> | 12 | /// </summary> |
13 | public sealed class RowDictionary<T> : Dictionary<string, T> where T : Row | 13 | internal sealed class RowDictionary<T> : Dictionary<string, T> where T : Row |
14 | { | 14 | { |
15 | /// <summary> | 15 | /// <summary> |
16 | /// Creates an empty <see cref="RowDictionary"/>. | 16 | /// Creates an empty <see cref="RowDictionary{T}"/>. |
17 | /// </summary> | 17 | /// </summary> |
18 | public RowDictionary() | 18 | public RowDictionary() |
19 | : base(StringComparer.InvariantCulture) | 19 | : base(StringComparer.InvariantCulture) |
@@ -21,9 +21,9 @@ namespace WixToolset.Core.WindowsInstaller | |||
21 | } | 21 | } |
22 | 22 | ||
23 | /// <summary> | 23 | /// <summary> |
24 | /// Creates and populates a <see cref="RowDictionary"/> with the rows from the given enumerator. | 24 | /// Creates and populates a <see cref="RowDictionary{T}"/> with the rows from the given enumerator. |
25 | /// </summary> | 25 | /// </summary> |
26 | /// <param name="Rows">Rows to add.</param> | 26 | /// <param name="rows">Rows to add.</param> |
27 | public RowDictionary(IEnumerable<T> rows) | 27 | public RowDictionary(IEnumerable<T> rows) |
28 | : this() | 28 | : this() |
29 | { | 29 | { |
@@ -34,7 +34,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
34 | } | 34 | } |
35 | 35 | ||
36 | /// <summary> | 36 | /// <summary> |
37 | /// Creates and populates a <see cref="RowDictionary"/> with the rows from the given <see cref="Table"/>. | 37 | /// Creates and populates a <see cref="RowDictionary{T}"/> with the rows from the given <see cref="Table"/>. |
38 | /// </summary> | 38 | /// </summary> |
39 | /// <param name="table">The table to index.</param> | 39 | /// <param name="table">The table to index.</param> |
40 | /// <remarks> | 40 | /// <remarks> |