In Visual Studio I have a ASP.NET 4.5 project, the language is C#. In that project I have found three classes (.cs) where most of the codes are the same, including fields and properties.
In such a case, what is a good approach to minimize and integrate (refactor) the duplicate code?
This is a risky refactoring process, but:
you may want to start by writing unit tests if you don't have any
pick one of the classes as the master
If you have ReSharper (or some other quality refactoring tools) available this process will go more smoothly.
Word of caution though... If you do not have unit tests set up it will be difficult to ensure that the code that looks duplicated actually is. It's easy to miss changes in logic just by visual inspection.