According to the MSDN document interface can be a member of a class or namespace :
for Example i can declare:
public class Test
{
public interface IMemberofTest
{
void get();
}
}
What is the use of having interface inside a class? Won't it break the purpose of real interface usage?