The new calendar has weather info. To show in Celsius instead of Fahrenheit go to the setting in the option tab.
Now the weather info is in Celsius. The weather is still bad though.
.NET, C#, Visual Studio, Architecture, Patterns, Tips&Tricks, Bug issues, etc.
The new calendar has weather info. To show in Celsius instead of Fahrenheit go to the setting in the option tab.
Now the weather info is in Celsius. The weather is still bad though.
The new Visual Studio 2012 has an very useful refactoring tool, the Analyze Solution for Code Clones.
The current project I’m working on has a lot of code duplicates. Not exactly following the DRY principle. But I must say the Code Clones found even more than I anticipated. It is large solution so it took some time to run.
The final report was excellent for refactoring functions and methods into one single implementation.
Code Clones finds code duplicates as exact, strong, medium and weak match. All the strong matches in my solution were obvious candidates for refactoring into a single and DRY implementation. It found both duplicates of actual functions, but even more impressing it found code snippets in remote places that were strong matches.
Happy refactoring!!!