|
4 | 4 | using System.Text; |
5 | 5 | using FormatWith.Internal; |
6 | 6 | using System.Runtime.CompilerServices; |
| 7 | +using System.Collections; |
7 | 8 |
|
8 | 9 | namespace FormatWith |
9 | 10 | { |
| 11 | + /// <summary> |
| 12 | + /// The string extensions provided by FormatWith for string formatting. |
| 13 | + /// </summary> |
10 | 14 | public static class StringExtensions |
11 | 15 | { |
12 | 16 | #region FormatWith Overloads |
@@ -100,10 +104,6 @@ public static string FormatWith( |
100 | 104 | /// </summary> |
101 | 105 | /// <param name="formatString">The format string, containing keys like {foo}</param> |
102 | 106 | /// <param name="replacements">An <see cref="IDictionary"/> with keys and values to inject into the string</param> |
103 | | - /// <param name="missingKeyBehaviour">The behaviour to use when the format string contains a parameter that is not present in the lookup dictionary</param> |
104 | | - /// <param name="fallbackReplacementValue">When the <see cref="MissingKeyBehaviour.ReplaceWithFallback"/> is specified, this string is used as a fallback replacement value when the parameter is present in the lookup dictionary.</param> |
105 | | - /// <param name="openBraceChar">The character used to begin parameters</param> |
106 | | - /// <param name="closeBraceChar">The character used to end parameters</param> |
107 | 107 | /// <returns>The formatted string</returns> |
108 | 108 | public static string FormatWith(this string formatString, IDictionary<string, object> replacements) |
109 | 109 | { |
@@ -343,7 +343,7 @@ public static FormattableString FormattableWith( |
343 | 343 | #endregion |
344 | 344 |
|
345 | 345 | /// <summary> |
346 | | - /// Gets an <see cref="IEnumerable{string}"/> that will return all format parameters used within the format string. |
| 346 | + /// Gets an <see cref="IEnumerable{String}"/> that will return all format parameters used within the format string. |
347 | 347 | /// </summary> |
348 | 348 | /// <param name="formatString">The format string to be parsed</param> |
349 | 349 | /// <param name="openBraceChar">The character used to begin parameters</param> |
|
0 commit comments