Operators                           Overloadability

	+, -, *, /, %, &, |, <<, >>         All C# binary operators can be overloaded.

	+, -, !,  ~, ++, --, true, false    All C# unary operators can be overloaded.

	==, !=, <, >, <= , >=               All relational operators can be overloaded, 
										but only as pairs.

	&&, ||				    They can't be overloaded

	() (Conversion operator)	    They can't be overloaded

	+=, -=, *=, /=, %=                  These compound assignment operators can be 
										overloaded. But in C#, these operators are
										automatically overloaded when the respective
										binary operator is overloaded.

	=, . , ?:, ->, new, is, as, sizeof  These operators can't be overloaded

        [ ]                             Can be overloaded.



[Source of the information][1]


For bracket:

    public Object this[int index]
    {
        
    }


  [1]: http://www.csharphelp.com/archives/archive135.html