Guest User

Untitled

a guest
Jun 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Convert
  2. {
  3. public static T convertFrom <T>(string value)
  4. {
  5. return new T(); //Не работает, нужно как-то задать ограничения new(), но как?
  6. }
  7. }
  8.  
  9. public static T convertFrom <T>(string value) where T : new()
  10. {
  11. return new T();
  12. }
Add Comment
Please, Sign In to add comment