2
Answers

VSS ( How To Remove From VB.Net File?)

Bill 0

Bill 0

20y
2.6k
1
I received a set of files that comprise a solution with several projects. They were all under version control at the sending system but will not be on my system. How do I get Visual Studio to remove the source control settings from these files so that I can open the solution and not get annoying error messages? Thanks! Steamboat Bill Colorado
Answers (2)
0
Brian Manlove

Brian Manlove

NA 6 0 19y
Not a good idea IMHO. Typically I would use an interface to specifically define common methods that would be used by multiple implementors... for example, the classic "Save", "Delete", and "Update" methods of my business objects. I would define the interface with those methods and/or possible overrides of them, and my "customer", "vendor", "order" objects would each implement this common interface. I would instantiate an interface object and then access each implementation object thru this single interface. If I found myself needing to create an object that "chained" interfaces, it would signify to me that my original interface needs some more methods added to it. However, since I'm just someone deep in the trenches and I don't have a lot of time for theoretical pursuits, I'm sure a lot of folks may differ with this opinion.