how to assign this read only variable in constructor.
private readonly Dictionary<string, Dictionary<string, int>> nCount = new Dictionary<string, Dictionary<string, int>>();
Want to initialize this variable in constructor:
public mclass() {
nCount = new Dictionary<string, Dictionary<string, int>>();
}
on the initializing time need to add a stringComparer to inner Dictornary