var myDictionary = new Dictionary<string, Dictionary<object, string>>();
for (int i = 0; i < myDictionary.Count; i++)
{
var element = myDictionary.ElementAt(i);
var name = element.Key;
var valueOfElement = element.Value;
for (int e = 0; e < valueOfElemen*****unt; e++)
{
var obj = valueOfElement.ElementAt(e).Key;
var actionWord = valueOfElement.ElementAt(e).Value;
}
}
for(int i=0; i<=totalWords; i++)
{
Console.WriteLine("Please enter name#" + i + ":");
Console.WriteLine("Please enter verb#" + i + ":");
Console.WriteLine("Please enter action#" + i + ":");
//This is the hard part tho... I need to store those 3 different string inputs into an multidimensional array
array[weord,verb.action] //Has to be stored in the same index }
(string name, string verb, object action)[] myTupleArray = new (string, string, object)[totalWords]; ... for ... myTupleArray[i] = (userInput.Name, userInput.Verb, userInput.Action); ... /for ...
string[,] Arra = new string[3, 9];
for (int a = 0; a <= (totalWords - 1); a++)
{
Console.WriteLine("Please enter name#" + (a + 1) + ":");
Arra[0, a] = Console.ReadLine();
}