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
3 changes: 3 additions & 0 deletions Stuff/Stuff/RunOnceDelegateDecorator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ public class RunOnceDelegateDecorator
#pragma warning restore 169, 414

/// <summary> Simple decoration of given delegate. Does not introduce any additional behavior </summary>
/// <remarks>
/// Some remarks here.
/// </remarks>
/// <typeparam name="T"> Delegate type</typeparam>
/// <param name="del"> Delegate to decorate </param>
/// <returns> New delegate which is wrapper around given one </returns>
Expand Down
1 change: 1 addition & 0 deletions Stuff/Stuff/Stuff.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<Compile Include="DelegateExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RunOnceDelegateDecorator.cs" />
<Compile Include="testclass.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
7 changes: 7 additions & 0 deletions Stuff/Stuff/testclass.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Stuff
{
public class testclass
{

}
}