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

ContractSelectionCommandArgs.cs « Commands « Commanding « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 038e9e322d16950b6ccb059ef4023e06139744dd (plain)
1
2
3
4
5
6
7
8
9
namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
{
    public sealed class ContractSelectionCommandArgs: EditorCommandArgs
    {
        public ContractSelectionCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
        {
        }
    }
}