/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/code-407-113-018/main.cs
30 строк
663 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
// C# (хороший пример) public interface IPrinter { void Print(string document); } public interface IScanner { string Scan(string document); } public interface IFax { void Fax(string document); } public class SimplePrinter : IPrinter { public void Print(string document) { Console.WriteLine($"Printing: {document}"); } } public class AllInOneDevice : IPrinter, IScanner, IFax { public void Print(string document) => Console.WriteLine($"Printing: {document}"); public string Scan(string document) => $"Scanned: {document}"; public void Fax(string document) => Console.WriteLine($"Faxing: {document}"); }