User Ilya Ryzhenkov - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:45:38Z http://stackoverflow.com/feeds/user/18575 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1298717/whats-your-favourite-resharpers-plugins-what-is-still-missing-in/1551942#1551942 0 Answer by Ilya Ryzhenkov for What's your favourite ReSharper's plugins, what is still missing in? Ilya Ryzhenkov 2009-10-11T22:21:21Z 2009-10-11T22:21:21Z <ul> <li>numbered bookmarking -- will be in ReSharper 5</li> <li>right align variables / operands -- unlikely</li> <li>possibility to collapse all projects in solution browser -- available since ReSharper 4.5</li> </ul> http://stackoverflow.com/questions/1518413/getting-resharper-cheaper/1518442#1518442 7 Answer by Ilya Ryzhenkov for getting Resharper cheaper Ilya Ryzhenkov 2009-10-05T05:54:49Z 2009-10-05T05:54:49Z <ol> <li>Drive good OSS project</li> <li>Be an MVP</li> <li>Find Discounts on the web</li> <li>Visit User Groups and be lucky to win free license (if your User Group is not participating in JetBrains programs, ask UG leader)</li> <li>Visit PDC or TechEd (+some other large conferences), attend JetBrains booth and be lucky to win free license</li> <li>Participate in Early Access Program, give great feedback and get free license (best feedback providers are chosen by team)</li> </ol> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa 10 What is the single task in your development activity you would like to see automated? Ilya Ryzhenkov 2008-10-09T12:39:54Z 2009-09-30T10:54:50Z <p>What is that single action you do over and over again during your development time? </p> <p>What task eats your development time like nothing else? </p> <p>What is the task you want to perform, but you never convince yourself to do, because it would take forever to accomplish?</p> <p>Please, provide environment information relevant to the task you mention:</p> <ul> <li>IDE and its version</li> <li>Tools, add-ins, plug-ins and other extensions </li> <li>Programming language</li> </ul> http://stackoverflow.com/questions/1434609/how-can-i-have-a-different-resharper-naming-convention-for-explicit-interface-met/1437682#1437682 0 Answer by Ilya Ryzhenkov for How can I have a different resharper naming convention for explicit interface methods? Ilya Ryzhenkov 2009-09-17T09:20:12Z 2009-09-17T09:20:12Z <p>There was a bug in some versions of ReSharper, and it was fixed long ago. What version do you use? Did you try latest builds, like 4.5.1 or one of the latest nightlies?</p> http://stackoverflow.com/questions/202802/why-you-i-should-not-learn-another-language/202963#202963 2 Answer by Ilya Ryzhenkov for Why you/I should not learn another language? Ilya Ryzhenkov 2008-10-14T21:41:54Z 2009-09-01T12:16:34Z <p>You played RPG few times, right? You know what multiclass means? When you learn other class skills you have some benefits and some limitations. You lose in being better in your main class, and you win in that you can do something that other class members cannot. </p> <p>Same here. You have limited amount of time (you can't change this) and you choose if you spend it to improve your skills in your current toolset, or to learn new toolset. Being expert in one language or being newbie in 10 different languages, it is up to you ;)</p> http://stackoverflow.com/questions/1336342/resharper-how-to-change-local-variable-is-never-used-to-be-a-suggestion/1336860#1336860 4 Answer by Ilya Ryzhenkov for Resharper - How to change 'local variable _ is never used' to be a suggestion. Ilya Ryzhenkov 2009-08-26T19:09:17Z 2009-08-26T19:09:17Z <p>If you don't need transaction variable, you can replace it with using (new TransactionScope()) { }</p> http://stackoverflow.com/questions/1113627/is-there-a-create-new-folder-in-current-project-keyboard-shortcut-for-visual-stud/1127913#1127913 1 Answer by Ilya Ryzhenkov for Is there a Create New Folder in current project keyboard shortcut for Visual Studio 2008? Ilya Ryzhenkov 2009-07-14T20:44:07Z 2009-07-14T20:44:07Z <p>Activate Solution Explorer (Ctrl-Alt-L) or Sync to Solution Explorer (Alt-Shift-L), then hit Alt-Ins (ReSharper Generate command). </p> http://stackoverflow.com/questions/1042332/replacement-of-delphi-ide-sync-edit-in-visual-studio/1045817#1045817 0 Answer by Ilya Ryzhenkov for Replacement of Delphi IDE "Sync Edit" in Visual Studio Ilya Ryzhenkov 2009-06-25T19:38:13Z 2009-06-25T19:38:13Z <p>ReSharper for local renames does exactly this. </p> http://stackoverflow.com/questions/904168/visual-studio-snippets-how-to-specify-foreach-loops-collection/912324#912324 1 Answer by Ilya Ryzhenkov for Visual Studio Snippets - How to specify foreach loop's collection Ilya Ryzhenkov 2009-05-26T19:38:27Z 2009-05-26T19:38:27Z <p>Type "ListBox1.Items" using normal intellisense, then hit Alt-Enter and choose "Enumerate collection with foreach" (not exact text). </p> <p>However, speaking exactly about ListBox.Items (from Windows.Forms), it is of type ObjectCollection, which is not strongly typed. So it is almost impossible to guess correct type for elements. For WPF, Items property also returns non-strongly typed collection, ItemCollection. If you have strongly typed or generic collection, ReSharper can infer enumeration item type correctly.</p> http://stackoverflow.com/questions/797749/how-do-i-automate-adding-a-using-statement-to-every-files-in-a-folder-namespac/801866#801866 2 Answer by Ilya Ryzhenkov for How do i automate adding a "using" statement to every files in a folder, namespace or project with Visual Studio 2005 / resharper Ilya Ryzhenkov 2009-04-29T11:11:38Z 2009-04-29T11:11:38Z <ul> <li>Open ReSharper Options / Languages / C# / Namespace Imports</li> <li>Add "Namespaces that should always be imported"</li> <li>Run Code Cleanup against solution or project. You may want to create profile (Options / Tools / Code Cleanup) with only Optimize Using Directives module.</li> </ul> http://stackoverflow.com/questions/713411/why-doesnt-the-namespace-provider-property-get-saved-within-a-project-file-for/724399#724399 0 Answer by Ilya Ryzhenkov for Why doesn't the "Namespace Provider" property get saved within a project file for a given subdirectory? Ilya Ryzhenkov 2009-04-07T06:55:19Z 2009-04-07T06:55:19Z <p>Try ReSharper 4.5 which is to be released soon. You can get early builds at <a href="http://tinyurl.com/nightly45" rel="nofollow">http://tinyurl.com/nightly45</a></p> http://stackoverflow.com/questions/94057/using-resharper-unit-test-runner-for-mstest-via-gallio/648791#648791 0 Answer by Ilya Ryzhenkov for Using Resharper Unit Test Runner for MSTest via Gallio Ilya Ryzhenkov 2009-03-15T23:22:13Z 2009-03-15T23:22:13Z <p>ReSharper 4.5 supports MSTest out of the box.</p> http://stackoverflow.com/questions/358711/locate-in-solution-explorer-resharper-shortcut/611486#611486 4 Answer by Ilya Ryzhenkov for Locate in solution explorer reSharper shortcut Ilya Ryzhenkov 2009-03-04T16:58:07Z 2009-03-04T16:58:07Z <p>Actually, for ReSharper 4.5 we found a way to workaround this problem of VS, so in ReSharper 4.5 this is no longer an issue. </p> http://stackoverflow.com/questions/360322/using-resharper-test-runner-to-run-mstest-unit-tests/482606#482606 2 Answer by Ilya Ryzhenkov for Using ReSharper Test Runner to run MSTest Unit Tests Ilya Ryzhenkov 2009-01-27T08:07:30Z 2009-01-27T08:07:30Z <p>Note, that ReSharper 4.5 which you can get via Early Access Program, is going to support MSTest out of the box.</p> http://stackoverflow.com/questions/474981/visualstudio-based-rich-client-platform/475023#475023 2 Answer by Ilya Ryzhenkov for VisualStudio-based Rich Client Platform Ilya Ryzhenkov 2009-01-23T23:12:29Z 2009-01-23T23:12:29Z <p><a href="http://msdn.microsoft.com/en-us/vsx2008/products/bb933751.aspx" rel="nofollow">Visual Studio Shell</a>?</p> http://stackoverflow.com/questions/457482/virtual-member-call-in-constructor/457935#457935 2 Answer by Ilya Ryzhenkov for Virtual member call in constructor Ilya Ryzhenkov 2009-01-19T15:18:37Z 2009-01-19T15:18:37Z <p>Just seal your class.</p> http://stackoverflow.com/questions/446080/moving-an-arbitrary-setting-to-a-toolbar-in-visual-studio/446102#446102 1 Answer by Ilya Ryzhenkov for Moving an arbitrary setting to a toolbar in Visual Studio Ilya Ryzhenkov 2009-01-15T09:04:55Z 2009-01-15T09:04:55Z <p>Write macros which will modify the two settings, then put macro on toolbar using "Cusomtize"</p> http://stackoverflow.com/questions/441079/cannot-resolve-symbol-error-in-visual-studio-2008/442193#442193 0 Answer by Ilya Ryzhenkov for "Cannot resolve symbol" error in Visual Studio 2008? Ilya Ryzhenkov 2009-01-14T07:35:43Z 2009-01-14T07:35:43Z <p>May be a bug in ReSharper. You could try ReSharper 4.5 <a href="http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+4.5+Nightly+Builds" rel="nofollow">nightly builds</a> (pre-release) to see if it is already fixed for this version. If not, please file a bug in our issue tracker (<a href="http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+Issue+Tracker" rel="nofollow">instructions</a>). Thanks.</p> http://stackoverflow.com/questions/426650/where-do-you-edit-the-constructor-template-on-resharper-4-1/429318#429318 2 Answer by Ilya Ryzhenkov for Where do you edit the constructor template on resharper 4.1? Ilya Ryzhenkov 2009-01-09T19:15:19Z 2009-01-09T19:15:19Z <p>Options / Languages / Common / Naming Style You should set your field prefix to underscore.</p> http://stackoverflow.com/questions/395549/given-an-object-how-can-i-programatically-tell-what-interfaces-it-supports/395559#395559 8 Answer by Ilya Ryzhenkov for Given an Object, How can I programatically tell what Interfaces it supports? Ilya Ryzhenkov 2008-12-27T23:03:30Z 2008-12-27T23:03:30Z <p>b.GetType().<a href="http://msdn.microsoft.com/en-us/library/system.type.getinterfaces.aspx" rel="nofollow">GetInterfaces</a>()</p> http://stackoverflow.com/questions/362613/resharper-configuration-in-vs-solution/362711#362711 4 Answer by Ilya Ryzhenkov for ReSharper configuration in VS solution. Ilya Ryzhenkov 2008-12-12T13:21:57Z 2008-12-12T13:21:57Z <p>Look in Options / Languages / Common / Code Style Sharing</p> http://stackoverflow.com/questions/358711/locate-in-solution-explorer-resharper-shortcut/359111#359111 2 Answer by Ilya Ryzhenkov for Locate in solution explorer reSharper shortcut Ilya Ryzhenkov 2008-12-11T12:02:04Z 2008-12-11T12:02:04Z <p>It is known bug in Visual Studio - Solution Folders are not opened programmatically. </p> http://stackoverflow.com/questions/316894/how-do-i-find-the-lockholder-reader-of-my-readerwriterlock-in-windbg/357773#357773 0 Answer by Ilya Ryzhenkov for How do I find the lockholder (reader) of my ReaderWriterLock in windbg Ilya Ryzhenkov 2008-12-10T22:03:55Z 2008-12-10T22:03:55Z <p>Try <a href="http://www.stevestechspot.com/SOSEXANewDebuggingExtensionForManagedCode.aspx" rel="nofollow">sosex</a> and !dlk</p> http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341929#341929 1 Answer by Ilya Ryzhenkov for Implementing and Enforcing Coding Standards Ilya Ryzhenkov 2008-12-04T20:26:40Z 2008-12-04T20:26:40Z <p>Try ReSharper, it can format your code to your style. Even reformat the whole solution at once.</p> http://stackoverflow.com/questions/337631/how-to-access-each-byte-in-a-bitmap-image/337670#337670 4 Answer by Ilya Ryzhenkov for How to access each byte in a bitmap image Ilya Ryzhenkov 2008-12-03T16:08:26Z 2008-12-03T16:08:26Z <p>Use LockBits member on Bitmap class to obtain BitmapData, then use Scan0 and Marshal.ReadByte to readbytes. Here is small example (it is not about correct brightness adjustment, though):</p> <pre><code> public static void AdjustBrightness(Bitmap image, int brightness) { int offset = 0; brightness = (brightness * 255) / 100; // GDI+ still lies to us - the return format is BGR, NOT RGB. BitmapData bmData = image.LockBits(new Rectangle(0, 0, image.Width, image.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); int stride = bmData.Stride; IntPtr Scan0 = bmData.Scan0; int nVal = 0; int nOffset = stride - image.Width * 3; int nWidth = image.Width * 3; for (int y = 0; y &lt; image.Height; ++y) { for (int x = 0; x &lt; nWidth; ++x) { nVal = Marshal.ReadByte(Scan0, offset) + brightness; if (nVal &lt; 0) nVal = 0; if (nVal &gt; 255) nVal = 255; Marshal.WriteByte(Scan0, offset, (byte)nVal); ++offset; } offset += nOffset; } image.UnlockBits(bmData); } </code></pre> http://stackoverflow.com/questions/337598/help-with-overriding-and-inheritance/337636#337636 11 Answer by Ilya Ryzhenkov for Help With Overriding and Inheritance... Ilya Ryzhenkov 2008-12-03T16:00:19Z 2008-12-03T16:00:19Z <p>In C# methods are not virtual by default, so if you design some method as overridable, you should specify it as virtual:</p> <pre><code>class Base { protected virtual string GetMood() {...} } </code></pre> <p>Second, you have to specify that you are going to override method from base class in derived class. </p> <pre><code>class Derived : Base { protected override string GetMood() {...} } </code></pre> <p>If you don't specify "override" keyword, you will get method that hides base type (and warning from compiler to put "new" keyword for the method to explicitly state so).</p> <p>If you want to stop inheritance chain and disallow further overrides of the method, you should mark method as sealed, like this:</p> <pre><code> protected sealed override string GetMood() {...} </code></pre> http://stackoverflow.com/questions/337574/is-there-a-collection-that-works-like-a-dictionary-without-the-values/337577#337577 13 Answer by Ilya Ryzhenkov for Is there a Collection that works like a Dictionary without the values? Ilya Ryzhenkov 2008-12-03T15:45:21Z 2008-12-03T15:45:21Z <p>HashSet&lt;T&gt; from System.Core.dll</p> http://stackoverflow.com/questions/34505/is-object-gethashcode-unique-to-a-reference-or-a-value/337351#337351 0 Answer by Ilya Ryzhenkov for Is Object.GetHashCode() unique to a reference or a value? Ilya Ryzhenkov 2008-12-03T14:45:56Z 2008-12-03T14:45:56Z <p>I can't know for sure how Object.GetHashCode is implemented in <em>real</em> .NET Framework, but in Rotor it uses SyncBlock index for the object as hashcode. There are some blog posts about it on the web, however most of them are from 2005. </p> http://stackoverflow.com/questions/253002/best-online-reading-to-understand-net-code-access-security 2 Best online reading to understand .NET Code Access Security? Ilya Ryzhenkov 2008-10-31T10:00:43Z 2008-12-02T20:42:31Z <p>I'm thinking about learning CAS, but I need to quickly grasp basic architecture, performance implications and if it at all suits my needs. What should I read?</p> http://stackoverflow.com/questions/335286/calling-overriden-constructor-and-base-constructor-in-c/335325#335325 7 Answer by Ilya Ryzhenkov for Calling Overriden Constructor and Base Constructor in C# Ilya Ryzhenkov 2008-12-02T20:29:44Z 2008-12-02T20:29:44Z <p>I would re-chain constructors, so they are called like </p> <pre><code>Bar() : this(0) Bar(int) : Foo(int) initializes Bar Foo(int) initializes Foo Foo() : this(0) </code></pre> <p>This is suitable, if parameterless constructors are assuming some kind of default value for int parameter of other constructor. If constructors are unrelated, you probably doing something wrong with your type, or maybe we need more information about what are you trying to achieve.</p> http://stackoverflow.com/questions/1272096/resharper-throws-outofmemoryexception-on-big-solution/1272147#1272147 Comment by Ilya Ryzhenkov on Resharper throws OutOfMemoryException on big solution Ilya Ryzhenkov 2009-10-11T22:23:56Z 2009-10-11T22:23:56Z Unfortunately, as of VS2010 beta1, there is no satisfactory code model provided. So the problem will get even worse, because WPF (new editor) takes lots of memory :( http://stackoverflow.com/questions/1426798/resharper-contains-mode-searching/1427047#1427047 Comment by Ilya Ryzhenkov on Resharper: 'contains' mode searching Ilya Ryzhenkov 2009-10-11T22:00:04Z 2009-10-11T22:00:04Z @Maciej, adding an option is the last thing we would like to do. There are already lots of options in ReSharper. I'd like to cut half of them, actually :) http://stackoverflow.com/questions/1537901/is-there-a-way-to-find-all-unused-code-in-a-net-project-using-resharper/1537960#1537960 Comment by Ilya Ryzhenkov on Is there a way to find all unused code in a .NET project using ReSharper? Ilya Ryzhenkov 2009-10-11T21:40:46Z 2009-10-11T21:40:46Z That's not entirely correct. This will show you unused declarations with private visibility, but not with internal or public. ReSharper 5 will likely have better story about this issue. http://stackoverflow.com/questions/1426798/resharper-contains-mode-searching/1427047#1427047 Comment by Ilya Ryzhenkov on Resharper: 'contains' mode searching Ilya Ryzhenkov 2009-09-15T19:16:40Z 2009-09-15T19:16:40Z Drew, we are already experimenting with 'contains' mode, and we don't like how it works now, but we have some ideas about how to make it much better. Let's wait for 5.0 :) http://stackoverflow.com/questions/81597/remove-unused-references-using/228834#228834 Comment by Ilya Ryzhenkov on Remove unused references (!= "using") Ilya Ryzhenkov 2009-09-05T12:27:52Z 2009-09-05T12:27:52Z This is not always correct. For example, if you have class Foo which derives from Bar, and you have static member Blah in Bar, and you call it as Foo.Blah, then you have to have assembly of Foo in references for compiler, but it will not be emitted into output, because static member is in Bar. There are some more cases like this. http://stackoverflow.com/questions/18746/how-would-you-spend-150-on-developer-tools/18776#18776 Comment by Ilya Ryzhenkov on How would you spend $150 on developer tools? Ilya Ryzhenkov 2009-08-25T20:13:05Z 2009-08-25T20:13:05Z why not ReSharper 4.5? :) http://stackoverflow.com/questions/1110516/resharper-running-all-tests-when-only-a-single-one-is-selected Comment by Ilya Ryzhenkov on Resharper running all tests when only a single one is selected Ilya Ryzhenkov 2009-07-11T08:21:16Z 2009-07-11T08:21:16Z Do you use Gallio to run MBUnit tests? http://stackoverflow.com/questions/988364/can-resharper-break-your-code/988436#988436 Comment by Ilya Ryzhenkov on Can resharper break your code? Ilya Ryzhenkov 2009-06-13T20:21:26Z 2009-06-13T20:21:26Z In this case, ReSharper didn't suggest it. You had no mark in the editor. Light bulb shows not only items that are suggested, but also handy editing options. E.g. you can invert if ad infinum :) http://stackoverflow.com/questions/797749/how-do-i-automate-adding-a-using-statement-to-every-files-in-a-folder-namespac/800540#800540 Comment by Ilya Ryzhenkov on How do i automate adding a "using" statement to every files in a folder, namespace or project with Visual Studio 2005 / resharper Ilya Ryzhenkov 2009-04-29T11:12:35Z 2009-04-29T11:12:35Z ReSharper sure can do solution-wide cleanup. Right-click solution node in Solution Explorer and select Cleanup Code. http://stackoverflow.com/questions/708907/devexpress-refactor-pro-vs-jetbrains-resharper Comment by Ilya Ryzhenkov on DevExpress Refactor Pro vs JetBrains ReSharper Ilya Ryzhenkov 2009-04-07T06:59:38Z 2009-04-07T06:59:38Z Upgrade from 4.0 to 4.5 is free, so why decide? :) Just download and use. http://stackoverflow.com/questions/713411/why-doesnt-the-namespace-provider-property-get-saved-within-a-project-file-for Comment by Ilya Ryzhenkov on Why doesn't the "Namespace Provider" property get saved within a project file for a given subdirectory? Ilya Ryzhenkov 2009-04-03T14:48:59Z 2009-04-03T14:48:59Z This property is provided by ReSharper. What version are you using? http://stackoverflow.com/questions/543318/resharper-can-it-stand-in-as-a-co-programmer/543362#543362 Comment by Ilya Ryzhenkov on ReSharper: Can it stand in as a co-programmer? Ilya Ryzhenkov 2009-02-13T07:26:58Z 2009-02-13T07:26:58Z @Jon, more like looking in code and realizing it is an answer to SO question, putting highlight with link to question with context action to go to SO ;) http://stackoverflow.com/questions/543263/whats-the-difference-between-assert-arenotequal-and-assert-arenotsame/543329#543329 Comment by Ilya Ryzhenkov on What's the difference between Assert.AreNotEqual and Assert.AreNotSame? Ilya Ryzhenkov 2009-02-12T23:26:22Z 2009-02-12T23:26:22Z Shouldn't AreSame be generic method with class constraint? http://stackoverflow.com/questions/457482/virtual-member-call-in-constructor/457786#457786 Comment by Ilya Ryzhenkov on Virtual member call in constructor Ilya Ryzhenkov 2009-01-19T15:17:56Z 2009-01-19T15:17:56Z You don't need to subscribe to own Load event, just override OnLoad method. http://stackoverflow.com/questions/429900/resharper-how-to-install-on-a-different-drive Comment by Ilya Ryzhenkov on ReSharper - How to install on a different drive? Ilya Ryzhenkov 2009-01-09T22:57:17Z 2009-01-09T22:57:17Z Click Advanced button on the very first page, follow wizard.