DEBSOURCES
Skip Quicknav
sources / mono-addins / 0.4-8 / Samples / TextEditorLib / Commands / NewCommand.cs
12345678910111213
using System; namespace TextEditor { public class NewCommand: ICommand { public void Run () { TextEditorApp.NewFile (""); } } }