Clase implementadora en C# .NET

using System; using interfaces; namespace clases{ public class ServicioImpl : Servicio{ public void imprimir(){ Console.WriteLine("La suma es: "); } public int suma(int x, int y){ return x + y; } } }
Clase implementadora de Servicio.cs

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.