Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MyWriter.cs « WriterService.SampleExtender « WriterService « Samples - github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e599b6be3655d11fa79a5738dffce0fd723495e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using WriterService;

namespace SampleExtender
{
	public class MyWriter: IWriter
	{
		public string Write ()
		{
			return "Some writer";
		}
	}
	
	public class DebugWriter: IWriter
	{
		public string Write ()
		{
			return "Some debug output";
		}
	}
}