User Ilya Ryzhenkov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T10:45:38Zhttp://stackoverflow.com/feeds/user/18575http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1298717/whats-your-favourite-resharpers-plugins-what-is-still-missing-in/1551942#15519420Answer by Ilya Ryzhenkov for What's your favourite ReSharper's plugins, what is still missing in?Ilya Ryzhenkov2009-10-11T22:21:21Z2009-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#15184427Answer by Ilya Ryzhenkov for getting Resharper cheaperIlya Ryzhenkov2009-10-05T05:54:49Z2009-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-automa10What is the single task in your development activity you would like to see automated?Ilya Ryzhenkov2008-10-09T12:39:54Z2009-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#14376820Answer by Ilya Ryzhenkov for How can I have a different resharper naming convention for explicit interface methods?Ilya Ryzhenkov2009-09-17T09:20:12Z2009-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#2029632Answer by Ilya Ryzhenkov for Why you/I should not learn another language?Ilya Ryzhenkov2008-10-14T21:41:54Z2009-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#13368604Answer by Ilya Ryzhenkov for Resharper - How to change 'local variable _ is never used' to be a suggestion.Ilya Ryzhenkov2009-08-26T19:09:17Z2009-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#11279131Answer by Ilya Ryzhenkov for Is there a Create New Folder in current project keyboard shortcut for Visual Studio 2008?Ilya Ryzhenkov2009-07-14T20:44:07Z2009-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#10458170Answer by Ilya Ryzhenkov for Replacement of Delphi IDE "Sync Edit" in Visual StudioIlya Ryzhenkov2009-06-25T19:38:13Z2009-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#9123241Answer by Ilya Ryzhenkov for Visual Studio Snippets - How to specify foreach loop's collectionIlya Ryzhenkov2009-05-26T19:38:27Z2009-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#8018662Answer 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 / resharperIlya Ryzhenkov2009-04-29T11:11:38Z2009-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#7243990Answer by Ilya Ryzhenkov for Why doesn't the "Namespace Provider" property get saved within a project file for a given subdirectory?Ilya Ryzhenkov2009-04-07T06:55:19Z2009-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#6487910Answer by Ilya Ryzhenkov for Using Resharper Unit Test Runner for MSTest via GallioIlya Ryzhenkov2009-03-15T23:22:13Z2009-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#6114864Answer by Ilya Ryzhenkov for Locate in solution explorer reSharper shortcutIlya Ryzhenkov2009-03-04T16:58:07Z2009-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#4826062Answer by Ilya Ryzhenkov for Using ReSharper Test Runner to run MSTest Unit TestsIlya Ryzhenkov2009-01-27T08:07:30Z2009-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#4750232Answer by Ilya Ryzhenkov for VisualStudio-based Rich Client PlatformIlya Ryzhenkov2009-01-23T23:12:29Z2009-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#4579352Answer by Ilya Ryzhenkov for Virtual member call in constructorIlya Ryzhenkov2009-01-19T15:18:37Z2009-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#4461021Answer by Ilya Ryzhenkov for Moving an arbitrary setting to a toolbar in Visual StudioIlya Ryzhenkov2009-01-15T09:04:55Z2009-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#4421930Answer by Ilya Ryzhenkov for "Cannot resolve symbol" error in Visual Studio 2008?Ilya Ryzhenkov2009-01-14T07:35:43Z2009-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#4293182Answer by Ilya Ryzhenkov for Where do you edit the constructor template on resharper 4.1?Ilya Ryzhenkov2009-01-09T19:15:19Z2009-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#3955598Answer by Ilya Ryzhenkov for Given an Object, How can I programatically tell what Interfaces it supports?Ilya Ryzhenkov2008-12-27T23:03:30Z2008-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#3627114Answer by Ilya Ryzhenkov for ReSharper configuration in VS solution.Ilya Ryzhenkov2008-12-12T13:21:57Z2008-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#3591112Answer by Ilya Ryzhenkov for Locate in solution explorer reSharper shortcutIlya Ryzhenkov2008-12-11T12:02:04Z2008-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#3577730Answer by Ilya Ryzhenkov for How do I find the lockholder (reader) of my ReaderWriterLock in windbgIlya Ryzhenkov2008-12-10T22:03:55Z2008-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#3419291Answer by Ilya Ryzhenkov for Implementing and Enforcing Coding StandardsIlya Ryzhenkov2008-12-04T20:26:40Z2008-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#3376704Answer by Ilya Ryzhenkov for How to access each byte in a bitmap imageIlya Ryzhenkov2008-12-03T16:08:26Z2008-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 < image.Height; ++y)
{
for (int x = 0; x < nWidth; ++x)
{
nVal = Marshal.ReadByte(Scan0, offset) + brightness;
if (nVal < 0)
nVal = 0;
if (nVal > 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#33763611Answer by Ilya Ryzhenkov for Help With Overriding and Inheritance...Ilya Ryzhenkov2008-12-03T16:00:19Z2008-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#33757713Answer by Ilya Ryzhenkov for Is there a Collection that works like a Dictionary without the values?Ilya Ryzhenkov2008-12-03T15:45:21Z2008-12-03T15:45:21Z<p>HashSet<T> from System.Core.dll</p>
http://stackoverflow.com/questions/34505/is-object-gethashcode-unique-to-a-reference-or-a-value/337351#3373510Answer by Ilya Ryzhenkov for Is Object.GetHashCode() unique to a reference or a value?Ilya Ryzhenkov2008-12-03T14:45:56Z2008-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-security2Best online reading to understand .NET Code Access Security?Ilya Ryzhenkov2008-10-31T10:00:43Z2008-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#3353257Answer by Ilya Ryzhenkov for Calling Overriden Constructor and Base Constructor in C#Ilya Ryzhenkov2008-12-02T20:29:44Z2008-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#1272147Comment by Ilya Ryzhenkov on Resharper throws OutOfMemoryException on big solutionIlya Ryzhenkov2009-10-11T22:23:56Z2009-10-11T22:23:56ZUnfortunately, 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#1427047Comment by Ilya Ryzhenkov on Resharper: 'contains' mode searching Ilya Ryzhenkov2009-10-11T22:00:04Z2009-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#1537960Comment by Ilya Ryzhenkov on Is there a way to find all unused code in a .NET project using ReSharper?Ilya Ryzhenkov2009-10-11T21:40:46Z2009-10-11T21:40:46ZThat'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#1427047Comment by Ilya Ryzhenkov on Resharper: 'contains' mode searching Ilya Ryzhenkov2009-09-15T19:16:40Z2009-09-15T19:16:40ZDrew, 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#228834Comment by Ilya Ryzhenkov on Remove unused references (!= "using")Ilya Ryzhenkov2009-09-05T12:27:52Z2009-09-05T12:27:52ZThis 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#18776Comment by Ilya Ryzhenkov on How would you spend $150 on developer tools?Ilya Ryzhenkov2009-08-25T20:13:05Z2009-08-25T20:13:05Zwhy not ReSharper 4.5? :)http://stackoverflow.com/questions/1110516/resharper-running-all-tests-when-only-a-single-one-is-selectedComment by Ilya Ryzhenkov on Resharper running all tests when only a single one is selectedIlya Ryzhenkov2009-07-11T08:21:16Z2009-07-11T08:21:16ZDo you use Gallio to run MBUnit tests?http://stackoverflow.com/questions/988364/can-resharper-break-your-code/988436#988436Comment by Ilya Ryzhenkov on Can resharper break your code?Ilya Ryzhenkov2009-06-13T20:21:26Z2009-06-13T20:21:26ZIn 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#800540Comment 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 / resharperIlya Ryzhenkov2009-04-29T11:12:35Z2009-04-29T11:12:35ZReSharper 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-resharperComment by Ilya Ryzhenkov on DevExpress Refactor Pro vs JetBrains ReSharperIlya Ryzhenkov2009-04-07T06:59:38Z2009-04-07T06:59:38ZUpgrade 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-forComment by Ilya Ryzhenkov on Why doesn't the "Namespace Provider" property get saved within a project file for a given subdirectory?Ilya Ryzhenkov2009-04-03T14:48:59Z2009-04-03T14:48:59ZThis 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#543362Comment by Ilya Ryzhenkov on ReSharper: Can it stand in as a co-programmer?Ilya Ryzhenkov2009-02-13T07:26:58Z2009-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#543329Comment by Ilya Ryzhenkov on What's the difference between Assert.AreNotEqual and Assert.AreNotSame?Ilya Ryzhenkov2009-02-12T23:26:22Z2009-02-12T23:26:22ZShouldn't AreSame be generic method with class constraint?http://stackoverflow.com/questions/457482/virtual-member-call-in-constructor/457786#457786Comment by Ilya Ryzhenkov on Virtual member call in constructorIlya Ryzhenkov2009-01-19T15:17:56Z2009-01-19T15:17:56ZYou 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-driveComment by Ilya Ryzhenkov on ReSharper - How to install on a different drive?Ilya Ryzhenkov2009-01-09T22:57:17Z2009-01-09T22:57:17ZClick Advanced button on the very first page, follow wizard.