Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. protected static readonly string _url = "SomeURL";
  2.  
  3. public class MyActualClass
  4. {
  5. protected static readonly string _url = "SomeURL";
  6. //... other code
  7. }
  8.  
  9. public class MyActualClassStub : MyActualClasss
  10. {
  11. public string GetUrlValue()
  12. {
  13. return _url;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement