Skip to content
Snippets Groups Projects
Commit 27a30d6a authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Fix incomplete method documentation.

parent f0b0a469
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ namespace AutoTx ...@@ -60,7 +60,7 @@ namespace AutoTx
/// </summary> /// </summary>
/// <param name="templateName">The file name of the template, without path.</param> /// <param name="templateName">The file name of the template, without path.</param>
/// <param name="substitions">A list of string-tuples to be used for the search-replace.</param> /// <param name="substitions">A list of string-tuples to be used for the search-replace.</param>
/// <returns></returns> /// <returns>The template with all patterns replaced by their substitution values.</returns>
private static string LoadMailTemplate(string templateName, List<Tuple<string, string>> substitions) { private static string LoadMailTemplate(string templateName, List<Tuple<string, string>> substitions) {
var text = File.ReadAllText( var text = File.ReadAllText(
Path.Combine(AppDomain.CurrentDomain.BaseDirectory, Path.Combine(AppDomain.CurrentDomain.BaseDirectory,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment