I have items and I want to add them to Dictionary Without using Add method (because it consumes number of lines). Is there any way to add items to Dictionary like
new List<string>() { "P","J","K","L","M" }; or like AddRange Method in List. Any help will be highly appericiated.