我创建了一个看起来像这样的文本文件:
Hello <name>! You and <name> will go for a run in the <place>.
我想用用户输入替换文件中的名称变量,并允许重复。例如,名称可能会出现两次,并且应该能够采用不同的答案。
Console.Write("Enter a name: ");
Console.Write("Enter another name: ")
我意识到我必须搜索文件和括号,但我不知道该如何去做。任何建议都表示赞赏。