Advertisement
Guest User

Untitled

a guest
May 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. namespace MyNameSpace
  2. {
  3. class MyClass
  4. {
  5. #region MyVariables
  6. #endregion
  7. }
  8.  
  9. public interface MyInterface
  10. {
  11. }
  12. }
  13.  
  14. namespace MyNameSpace
  15. {
  16. class MyClass
  17. {
  18. #region MyVariables
  19. var someVariable = "someData";
  20. #endregion
  21.  
  22. TypeProvided methodName(parameters)
  23. {
  24. return someSimpleReturn;
  25. }
  26. }
  27.  
  28. public interface MyInterface
  29. {
  30. TypeProvided anotherMethodName();
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement