WikiFunctions.Namespace.IsImportant C# (CSharp) Method

IsImportant() public static method

Tests title to make sure it is either main, image, category or template namespace.
public static IsImportant ( int key ) : bool
key int Namespace key
return bool
        public static bool IsImportant(int key)
        {
            return key == Article || key == File || key == Template || key == Category;
        }

Same methods

Namespace::IsImportant ( string articleTitle ) : bool