Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created November 10, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NeelBhatt/71f8e32437da078c802301051b570fa5 to your computer and use it in GitHub Desktop.
Save NeelBhatt/71f8e32437da078c802301051b570fa5 to your computer and use it in GitHub Desktop.
using System;
public interface ILogger
{
void Log(string Info);
}
public class TextLogger : ILogger
{
public void Log(string Info)=> Console.Write("In base Logger");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment