We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da27c9 commit 5b5e599Copy full SHA for 5b5e599
src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValue.cs
@@ -1,10 +1,12 @@
1
// Copyright (c) Six Labors.
2
// Licensed under the Six Labors Split License.
3
4
+using System.Diagnostics;
5
using System.Runtime.CompilerServices;
6
7
namespace SixLabors.ImageSharp.Metadata.Profiles.Exif;
8
9
+[DebuggerDisplay("{Tag} = {IsArray?\"[..]\":ToString(),nq} ({GetType().Name,nq})")]
10
internal abstract class ExifValue : IExifValue, IEquatable<ExifTag>
11
{
12
protected ExifValue(ExifTag tag) => this.Tag = tag;
0 commit comments