Guest User

Untitled

a guest
Jan 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class Wrapper
  2. {
  3. public Wrapper(string value)
  4. {
  5. _value = value;
  6. }
  7.  
  8. private string _value;
  9. }
  10.  
  11. public class Test
  12. {
  13. private string someString = "Some string";
  14. private Wrapper wrapper = new Wrapper(someString); // cannot access non-static field 'someString' in static context
  15. }
Add Comment
Please, Sign In to add comment