Returning two dictionaries with Tuple from one method within another class
问题 I have one class, class AClass . In this class I'm filling two dictionaries and also, I'm returning these two dictionaries so I've used Tuple<Dictionary<string, string>, Dictionary<string, string>> type of method declaration: class AClass { Dictionary<string, string> dictOne = new Dictionary<string, string>(); Dictionary<string, string> dictTwo = new Dictionary<string, string>(); public Tuple<Dictionary<string, string>, Dictionary<string, string>> MyMethodOne() { //Adding items dictOne and