UnsignedLong

UnsignedLong class

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

public sealed class UnsignedLong : ValueElement<uint>

Constructors

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

Properties

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

Methods

NameDescription
Add(uint)
AddRange(Span<uint>)
ConvertData<TOutput>(Func<uint, 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, uint)
Remove(uint)
RemoveAt(int)
Replace(IEnumerable<uint>)
override ToString()
TryGetValue<TValue>(Index, out TValue)
TryGetValue<TValue>(int, out TValue)

See Also