/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/Core/Undo/ISourceTextUndoTransaction.cs
25 строк
895 B
Cyrus Najmabadi
Remove unnecessary nullable directives
25 мар 2025, 20:32
25 мар 2025, 20:32
834ce57
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.Editor.Undo; /// <summary> /// Represents undo transaction for a <see cref="Microsoft.CodeAnalysis.Text.SourceText"/> /// with a display string by which the IDE's undo stack UI refers to the transaction. /// </summary> internal interface ISourceTextUndoTransaction : IDisposable { /// <summary> /// The <see cref="Microsoft.CodeAnalysis.Text.SourceText"/> for this undo transaction. /// </summary> SourceText SourceText { get; } /// <summary> /// The display string by which the IDE's undo stack UI refers to the transaction. /// </summary> string Description { get; } }