Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryorah <yoram.harmelin@gmail.com>2012-06-12 16:12:50 +0400
committeryorah <yoram.harmelin@gmail.com>2012-06-12 16:42:27 +0400
commit521994ece38d3c520ee537ade38951465ac8d269 (patch)
tree3af490cda5881a5aaf8f51a501e0624eee365375 /LibGit2Sharp/Core/Compat
parent0668f73ddf3f42e4909030593ecaf23b391be259 (diff)
Decorate Lazy type with DebuggerStepThrough attribute
Diffstat (limited to 'LibGit2Sharp/Core/Compat')
-rw-r--r--LibGit2Sharp/Core/Compat/Lazy.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/Compat/Lazy.cs b/LibGit2Sharp/Core/Compat/Lazy.cs
index a4eb40d7..2891920c 100644
--- a/LibGit2Sharp/Core/Compat/Lazy.cs
+++ b/LibGit2Sharp/Core/Compat/Lazy.cs
@@ -1,4 +1,5 @@
using System;
+using System.Diagnostics;
namespace LibGit2Sharp.Core.Compat
{
@@ -6,6 +7,7 @@ namespace LibGit2Sharp.Core.Compat
/// Provides support for lazy initialization.
/// </summary>
/// <typeparam name = "TType">Specifies the type of object that is being lazily initialized.</typeparam>
+ [DebuggerStepThrough]
public class Lazy<TType>
{
private readonly Func<TType> evaluator;