~ubuntu-branches/ubuntu/trusty/mono-addins/trusty-proposed

« back to all changes in this revision

Viewing changes to Samples/TextEditorLib/Commands/NewCommand.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-04-25 11:11:33 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110425111133-t05u5p7o5fxx70fu
Tags: 0.6-2
Upload to Unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
using System;
3
 
 
4
 
namespace TextEditor
5
 
{
6
 
        public class NewCommand: ICommand
7
 
        {
8
 
                public void Run ()
9
 
                {
10
 
                        TextEditorApp.NewFile ("");
11
 
                }
12
 
        }
13
 
}