Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. void Export(List<T> data, params string[] parameters){
  2.  
  3. }
  4.  
  5. Error 34 The type or namespace name 'T' could not be found (are you missing a using directive or an assembly reference?) D:ResocentroProyectosSRASRA.DataModelETLPackagueIETLPackage.cs 15 28 SRA.Data
  6.  
  7. void Export<T>(List<T>data, params string[] parameters) {
  8. ...
  9. }
  10.  
  11. void Export<T>(List<T> data, params string[] parameters){
  12.  
  13. }
Add Comment
Please, Sign In to add comment