Good day. I create a console application that, when a variable changes, should save data to a new file. Constructor class:
StreamReader sr = new StreamReader(@"D:\New\1.txt"); Question : How to implement variable transfer to incoming parameters? As I see a solution that does not fit:
StreamReader sr = new StreamReader(@"D:\New\{0}.txt", count); // Error Thanks for the answer.