I\'m trying to use IntelliJ 10.5\'s \"structural search\" feature to find classes that implement an interface, A but do not implement another interface, B.
I am attempting to search for using (var context = new $DataContext$()) where DataContext is any class that extends System.Data.Linq.DataContext using Resharpers \'Search with Pattern\'.
R# 5.1.1751.8 When I perform a pattern search for... catch开发者_开发知识库 (Exception e) {} ...I\'m shown an error dialog which says \"Can not parse pattern\".
I\'m using LinFu\'s dynamic proxy to add some advice to some classes.The problem is that the proxied objects can only intercept virtual methods and will return the return type\'s default value for non
I need to build a small \"monitoring\" scraper for a 3rd party website (it\'s an external website that has stats about our visitors).