I have an upgraded 3rd party library and there used to be an object called Foo and now its an interface called IFoo
what is the best way to change all usages and declarations of Foo to IFoo
i tried doing Find / Replace but this also affected FooBar to IFooBar (which i dont want)
thoughts?