SignedShort

SignedShort class

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

public sealed class SignedShort : ValueElement<short>

Constructors

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

Properties

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

Methods

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

See Also