Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion csharp/Platform.Disposables/DisposableBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ protected virtual bool AllowMultipleDisposeCalls
/// <para>
/// Initializes a new <see cref="DisposableBase"/> instance.
/// </para>
/// <para></para>
/// <para>
/// Инициализирует новый экземпляр <see cref="DisposableBase"/>.
/// </para>
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
static DisposableBase() => _currentDomain.ProcessExit += OnProcessExit;
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.Disposables/IDisposable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Platform.Disposables
{
/// <summary>
/// <para>Представляет расширенный интерфейс <see cref="System.IDisposable"/>.</para>
/// <para>Represents an extended <see cref="System.IDisposable"/> interface.</para>
/// <para>Представляет расширенный интерфейс <see cref="System.IDisposable"/>.</para>
/// </summary>
public interface IDisposable : System.IDisposable
{
Expand Down
Loading