Skip to content

Commit

Permalink
Automatically generated XML-comment stubs are added.
Browse files Browse the repository at this point in the history
  • Loading branch information
FreePhoenix888 committed Aug 22, 2021
1 parent ff8cc2d commit dc8454f
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 8 deletions.
12 changes: 12 additions & 0 deletions csharp/Platform.Threading.Tests/ThreadHelpersTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,20 @@

namespace Platform.Threading.Tests
{
/// <summary>
/// <para>
/// Represents the thread helpers tests.
/// </para>
/// <para></para>
/// </summary>
public class ThreadHelpersTests
{
/// <summary>
/// <para>
/// Tests that invoke test.
/// </para>
/// <para></para>
/// </summary>
[Fact]
public void InvokeTest()
{
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.Threading/ConcurrentQueueExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Concurrent;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.CompilerServices;

namespace Platform.Threading.Synchronization
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.CompilerServices;

namespace Platform.Threading.Synchronization
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.Threading/Synchronization/ISynchronized.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Runtime.CompilerServices;
using System.Runtime.CompilerServices;

namespace Platform.Threading.Synchronization
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.CompilerServices;
using System.Threading;

Expand All @@ -10,6 +10,12 @@ namespace Platform.Threading.Synchronization
/// </summary>
public class ReaderWriterLockSynchronization : ISynchronization
{
/// <summary>
/// <para>
/// The supports recursion.
/// </para>
/// <para></para>
/// </summary>
private readonly ReaderWriterLockSlim _rwLock = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion);

/// <include file='bin\Release\netstandard2.0\Platform.Threading.xml' path='doc/members/member[@name="M:Platform.Threading.Synchronization.ISynchronization.ExecuteReadOperation(System.Action)"]/*'/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.CompilerServices;

namespace Platform.Threading.Synchronization
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.Threading/TaskExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Runtime.CompilerServices;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;

namespace Platform.Threading
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.Threading/ThreadHelpers.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Runtime.CompilerServices;
using System.Threading;

Expand Down

0 comments on commit dc8454f

Please sign in to comment.