ARCed.Helpers.FileAssociator.IsAssociated C# (CSharp) Method

IsAssociated() public static method

Return true if extension already associated in registry
public static IsAssociated ( string extension ) : bool
extension string Extension to check
return bool
        public static bool IsAssociated(string extension)
        {
            return (Registry.ClassesRoot.OpenSubKey(extension, false) != null);
        }