Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Microsoft.Office.Interop.Excel.Application oXL = new Microsoft.Office.Interop.Excel.Application();
  2. if(oXL.Version.Equals("15.0"))
  3. {
  4. //bla bla..
  5. }
  6. else if(oXL.Version.Equals("14.0")||oXL.Version.Equals("12.0") || oXL.Version.Equals("11.0"))
  7. {
  8. //bla bla..
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement