Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. private MainClass()
  2. {
  3. myType = new MyType();
  4. }
  5.  
  6. public MainClass(string inParm)
  7. : base()
  8. {
  9. myParm = inParm;
  10. }
  11. }
  12.  
  13. public class MainClass
  14. {
  15. private MyType myType = null;
  16. private string myParm = string.Empty;
  17.  
  18. private MainClass()
  19. {
  20. }
  21.  
  22. public MainClass(string inParm)
  23. : base()
  24. {
  25. myType = new MyType();
  26. myParm = inParm;
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement