Interface without any members - bad practice?

Viewed 9118

Possible Duplicate:
What is the purpose of a marker interface?

Is it bad practice to create a completely empty interface such as:

public interface ISomething
{
}

There is a case where I would like to treat certain objects differently than others, but I don't require any new behavior.

6 Answers
Related