Hi guys,
Please see code belown.
[code]
interface IMyI
{
void AskPass();//But here is no public modifier
}
class SomeClass: IMyI
{
static void Main(string[] args)
{
Console.ReadKey();
}
void AskPass()//it was giving this error " cannot implement an interface member because it is not public. " untill i put here public modifier. is this normal?
{
Console.WriteLine("Test...");
}
[/code]