Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Application {
  2. public void InitOptions {
  3. if(optionWithThirdPartyDependency) {
  4. OptionalFunctionality.InitFeature();
  5. }
  6. }
  7. }
  8.  
  9. #using ThirdPartyLibrary
  10.  
  11. public class OptionalFunctionality {
  12. public static void InitFeature() {
  13. <init the feature>
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement