I have a string array as shown below: How do I write each one of them to the console? Below is the code from my c# program: From the below code I have to write all the cats to the console
using (RegistryKey ic = clsidKey.OpenSubKey("Implemented Categories"))
{
string[] cats = ic.GetSubKeyNames();
}