Example #1
0
        public void AddText(L10nTextRow text)
        {
            if (text == null)
            {
                throw new ArgumentNullException(nameof(text));
            }

            if (text.Id == null)
            {
                return;
            }

            this.l10nTexts[text.Id] = text;
        }
 public static bool IsNullOrNone(this L10nTextRow self)
 => self == null || self == L10nTextRow.None;