Fixed new violations of HasDebuggerDisplayAttribute

This commit is contained in:
Kristian Hellang
2015-01-06 09:01:03 +01:00
parent b088b3f544
commit 0497158aed
8 changed files with 49 additions and 12 deletions
@@ -1,5 +1,6 @@
using System;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
@@ -28,5 +29,10 @@ namespace Octokit
/// Only comments updated at or after this time are returned. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
/// </summary>
public DateTimeOffset? Since { get; set; }
internal string DebuggerDisplay
{
get { return String.Format(CultureInfo.InvariantCulture, "Sort: {0}, Direction: {1}, Since: {2}", Sort, Direction, Since); }
}
}
}