/// <summary> /// Calculate number of words to fit complete instruction bytecode. /// </summary> /// <returns>Number of words in instruction bytecode.</returns> public override uint GetWordCount() { uint wordCount = 0; wordCount += IdResult.GetWordCount(); wordCount += SampledType.GetWordCount(); wordCount += Dim.GetWordCount(); wordCount += Depth.GetWordCount(); wordCount += Arrayed.GetWordCount(); wordCount += MS.GetWordCount(); wordCount += Sampled.GetWordCount(); wordCount += ImageFormat.GetWordCount(); wordCount += AccessQualifier?.GetWordCount() ?? 0u; return(wordCount); }