VS2005 IDE: Automatically accept code change suggestions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T08:40:42Zhttp://stackoverflow.com/feeds/question/218832http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218832/vs2005-ide-automatically-accept-code-change-suggestions0VS2005 IDE: Automatically accept code change suggestions?Jim2008-10-20T15:32:08Z2009-07-12T13:00:01Z
<p>I'm pasting test data from a SQL results into my code. I'm using the SQL results to manually populate a strongly typed dataset. However, the data types need to be casted to the correct data types. VS2005 tells me that I need to cast each field as an int, decimal, date, etc., but I'd rather not have to click this hundreds of times or manually write the casts each time.</p>
<p>Is there a shortcut to do something like navigate to the next error, then another shortcut to accept the code suggestion?</p>
http://stackoverflow.com/questions/218832/vs2005-ide-automatically-accept-code-change-suggestions/218877#2188770Answer by Roger Lipscombe for VS2005 IDE: Automatically accept code change suggestions?Roger Lipscombe2008-10-20T15:44:50Z2008-10-20T15:44:50Z<p>If I understand you correctly, ReSharper can do this with Alt+PgDn, Alt+Enter, Enter, rinse-and-repeat. I dare say that other VS plugins have similar features.</p>