SignedLong

SignedLong class

Encapsulates the Signed Long (SL) VR type. https://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#:~:text=SL-,Signed%20Long,-Signed%20binary%20integer.

public sealed class SignedLong : ValueElement<int>

Constructors

NameDescription
SignedLong(Tag, int)Initializes a new instance of the SignedLong with the given value and tag.
SignedLong(Tag, Span<int>)

Properties

NameDescription
Count { get; }
Data { get; }
Tag { get; }
override ValueRepresentation { get; }

Methods

NameDescription
Add(int)
AddRange(Span<int>)
ConvertData<TOutput>(Func<int, TOutput>)
Get(int)
Get<TValue>(Index)
Get<TValue>(int)
GetOrDefault<TValue>(Index)
GetOrDefault<TValue>(int)
GetSingleOrDefault()
GetValues()
GetValues(Range)
GetValues<TValue>()
GetValues<TValue>(Range)
Insert(int, int)
Remove(int)
RemoveAt(int)
Replace(IEnumerable<int>)
override ToString()
TryGetValue<TValue>(Index, out TValue)
TryGetValue<TValue>(int, out TValue)

See Also