~ubuntu-branches/ubuntu/karmic/mono-addins/karmic

« back to all changes in this revision

Viewing changes to Samples/WriterService.SampleExtender/MyWriter.cs

  • Committer: Bazaar Package Importer
  • Author(s): Mirco Bauer
  • Date: 2007-07-14 12:07:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070714120748-2elczfsjlrdsrpms
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using WriterService;
 
3
 
 
4
namespace SampleExtender
 
5
{
 
6
        public class MyWriter: IWriter
 
7
        {
 
8
                public string Write ()
 
9
                {
 
10
                        return "Some writer";
 
11
                }
 
12
        }
 
13
        
 
14
        public class DebugWriter: IWriter
 
15
        {
 
16
                public string Write ()
 
17
                {
 
18
                        return "Some debug output";
 
19
                }
 
20
        }
 
21
}