コード例 #1
0
ファイル: PathTableFormat.cs プロジェクト: bg0jr/Maui
        public override IFormat Clone()
        {
            PathTableFormat other = new PathTableFormat( Name, Path, Columns.ToArray() );
            other.SkipRows = SkipRows.ToArray();
            other.SkipColumns = SkipColumns.ToArray();

            return other;
        }
コード例 #2
0
ファイル: PathTableFormat.cs プロジェクト: riyanhax/Maui
        public override IFormat Clone()
        {
            PathTableFormat other = new PathTableFormat(Name, Path, Columns.ToArray());

            other.SkipRows    = SkipRows.ToArray();
            other.SkipColumns = SkipColumns.ToArray();

            return(other);
        }