using System.Collections.Generic;
public static void Main()
UtilityHelper.AddDefine1("a","b");
UtilityHelper.AddDefine2("c","1");
public class UtilityHelper{
private static Dictionary<string,string> define1;
private static Dictionary<string,string> define2;
private static Dictionary<string,string> define3;
public static void AddDefine1(string Key,string Val)
define1 = new Dictionary<string,string>();
if (define1.ContainsKey(Key)==false)
public static void AddDefine2(string Key,string Val)
define2 = new Dictionary<string,string>();
if (define2.ContainsKey(Key)==false)
public static void AddDefine3(string Key,string Val)
define3 = new Dictionary<string,string>();
if (define3.ContainsKey(Key)==false)
public static void Create()
Console.WriteLine($"{define1.Keys.Count()}");
Console.WriteLine($"{define2.Keys.Count()}");
Console.WriteLine($"{define3.Keys.Count()}");