コード例 #1
0
ファイル: Table.cs プロジェクト: DrMueller/WordAnalyzer2
        public Table(IReadOnlyCollection <ICell> cells, IElementDescription description)
        {
            Guard.ObjectNotNull(() => cells);

            Cells       = cells;
            Description = description;
        }
コード例 #2
0
ファイル: Shape.cs プロジェクト: DrMueller/WordAnalyzer2
        public Shape(IElementDescription description)
        {
            Guard.ObjectNotNull(() => description);

            Description = description;
        }