File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ public interface IClipboardWriter
14
14
void AppendString ( string formatName , string data ) ;
15
15
void AppendStream ( string formatName , MemoryStream stream ) ;
16
16
void Flush ( ) ;
17
- void AppendInfo < T > ( ColumnInfo [ ] columnInfos ,
18
- IEnumerable < IExportable > exportableResults ,
19
- string titleFormat ,
20
- ClipboardWriterAppendingInformationFormat appendingInformationFormat ) where T : IExportable ;
17
+ void AppendInfo ( ColumnInfo [ ] columnInfos ,
18
+ IEnumerable < IExportable > exportableResults ,
19
+ string titleFormat ,
20
+ ClipboardWriterAppendingInformationFormat appendingInformationFormat ) ;
21
21
}
22
22
23
23
[ Flags ]
@@ -78,10 +78,10 @@ public void Flush()
78
78
}
79
79
}
80
80
81
- public void AppendInfo < T > ( ColumnInfo [ ] columnInfos ,
81
+ public void AppendInfo ( ColumnInfo [ ] columnInfos ,
82
82
IEnumerable < IExportable > results ,
83
83
string title ,
84
- ClipboardWriterAppendingInformationFormat appendingInformationFormat ) where T : IExportable
84
+ ClipboardWriterAppendingInformationFormat appendingInformationFormat )
85
85
{
86
86
object [ ] [ ] resultsAsArray = results . Select ( result => result . ToArray ( ) ) . ToArray ( ) ;
87
87
You can’t perform that action at this time.
0 commit comments