AvalonStudio.Shell.Commands.UnCommentCommandDefinition.UnCommentCommandDefinition C# (CSharp) 메소드

UnCommentCommandDefinition() 공개 메소드

public UnCommentCommandDefinition ( ) : System
리턴 System
		public UnCommentCommandDefinition()
		{
			_command = ReactiveCommand.Create();

			_command.Subscribe(_ =>
			{
				var shell = IoC.Get<IShell>();

                (shell.SelectedDocument as EditorViewModel)?.UnComment();
			});
		}
UnCommentCommandDefinition