Advertisement
Guest User

Untitled

a guest
May 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #region Public Virtual Methods
  2. // my virtual method
  3. public virtual void DoSomeWork()
  4. {
  5. // some work that may be overriden by another method
  6. }
  7. // another virtual method
  8. public virtual int DoSomeOtherWork()
  9. {
  10. return 0;
  11. }
  12. #endregion Public Virtual Methods
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement