コード例 #1
0
        public ZilAtom([NotNull] string text, [CanBeNull] ObList list, StdAtom stdAtom)
        {
            if (string.IsNullOrEmpty(text))
            {
                throw new ArgumentException("Value cannot be null or empty.", nameof(text));
            }

            Text      = text;
            this.list = list;
            StdAtom   = stdAtom;
        }
コード例 #2
0
 public ZilLink([NotNull] string pname, ObList list)
     : base(pname, list, StdAtom.None)
 {
 }