Question: Programming language C# 1. What will you do? Rewrite the Configuration class below according to the Singleton design pattern. Then, rewrite the client code that

Programming language C#
1. What will you do? Rewrite the Configuration class below according to the Singleton design pattern. Then, rewrite the client code that uses this class accordingly. public class Configuration { public int MaxNumberOfUsers; public string LogFileName; public Configuration() { // initial values of the configuration options this.MaxNumberOfUsers = 10; this.LogFileName = "D:\\USER.LOG"; } } // Client code that uses the global configuration options Configuration conf = new Configuration(); Console.WriteLine(conf. LogFileName); Console.WriteLine(conf.MaxNumberOfUsers)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
