Definition : What is an Interface?
What is an Interface |
interface
ISum
{
int iGetSum(int i, int j); //By Default Public
int iGetSum(int i, int j); //By Default Public
}
class Sum : ISum
{
class Sum : ISum
{
public int iGetSum(int i, int j) //Must be declare Public
{
return i + j;
}
}
Definition , What is an Interface, real world scenario and
live code example for Interface, use of interface in programming of asp dot net
or c sharp #