What do you think Interface is value type or refrence type

Answer is Both interface can be of any type. Interface is a Contract, When we design Interface and implement it in other object , that object will implement this. So, when a struct implement an interface ,that time it is value type and in case of class it is reference type.