ModelNodeInfoCollection.Keys

IEnumerable`1 Keys{ get }

Description

An enumerable for the keys in this collection.

Examples

Iterating through ModelNode.Info

You can choose to iterate through different parts of ModelNode.Info using foreach loops.

foreach (ModelNode node in model.Nodes)
{
	foreach (KeyValuePair<string, string> kvp in node.Info)
		Log.Info($"{kvp.Key} - {kvp.Value}");

	foreach (string key in node.Info.Keys)
		Log.Info($"key: {key} - {node.Info[key]}");

	foreach (string val in node.Info.Values)
		Log.Info($"value: {val}");
}




Found an issue with these docs, or have some additional questions? Create an Issue on Github!