Соотнесите интерфейсы и соответствующие им классы: - Ответ на вопрос по ОПC# №2451122
-37%
Вопрос
Соотнесите интерфейсы и соответствующие им классы:- interface Interface1 {
- interface Interface1 { void Execute(); } string Execute(string[] arr); }
- interface Interface1 { void Execute1(); int Execute2(); }
- interface Interface1 {int Execute(int a); }
- class Test : Interface1 { void Execute() { WriteLine("A"); } }
- class Test : Interface1 { string Execute(string[] arr) { string str=””; foreach(string s in arr) { str+=s; } return str; } }
- class Test : Interface1 { int Execute2() { return a*2; } void Execute1() { WriteLine("A"); } }
- class Test : Interface1 { int Execute(int a) { return a*2; } }
bezhvostov






















