diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-18 22:04:48 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-18 23:58:30 -0600 |
| commit | 0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3 (patch) | |
| tree | 697466ea42c21f6d996cf324eb191f2182300697 /src/WixToolset.Core.WindowsInstaller/RowDictionary.cs | |
| parent | 4e9b8c43ec5870d6aee75a95acd8a0de4ff4c1db (diff) | |
| download | wix-0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3.tar.gz wix-0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3.tar.bz2 wix-0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3.zip | |
Enable XML doc.
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> |
