mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
22 lines
418 B
C#
22 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestBed
|
|
{
|
|
class C : IB
|
|
{
|
|
public void SayHello()
|
|
{
|
|
Console.WriteLine("Hello");
|
|
}
|
|
|
|
public void SayHowAreYou()
|
|
{
|
|
Console.WriteLine("How Are You");
|
|
}
|
|
}
|
|
}
|