7 lines
173 B
C#
7 lines
173 B
C#
|
public class OriginalComponent : IComponent
|
||
|
{
|
||
|
public void DoSomething()
|
||
|
{
|
||
|
Console.WriteLine("I am the original component doing something important");
|
||
|
}
|
||
|
}
|