User hmemcpy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T05:31:19Zhttp://stackoverflow.com/feeds/user/8205http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804612#18046121Answer by hmemcpy for Good ethical hacking bookhmemcpy2009-11-26T16:24:27Z2009-11-26T16:24:27Z<p>Read <a href="http://www.syngress.com/hacking-and-penetration-testing/Stealing-the-Network-The-Complete-Series-Collector-s-Edition-Final-Chapter-and-DVD/" rel="nofollow">Stealing the Network</a> series by Syngress Publishing. It's a collection of stories, while fictional, the techniques, methods and software used in them is very real. It's an entertaining read, places you in the state of mind of the hacker.</p>
http://stackoverflow.com/questions/1741573/how-to-repair-resharper/1754703#17547030Answer by hmemcpy for How to repair Resharper?hmemcpy2009-11-18T09:21:57Z2009-11-18T09:21:57Z<p>See if it's even loaded by ticking the checkbox it in the <code>Tools → Add-in Manager</code>.</p>
http://stackoverflow.com/questions/1740983/c-date-parse-exact-issue/1741005#17410050Answer by hmemcpy for C# Date Parse Exact Issuehmemcpy2009-11-16T09:19:45Z2009-11-16T09:28:50Z<p>You could simply do:</p>
<pre><code>string dateFormatString = "dd/MM/yyyy HH:mm:ss";
string properDate = DateTime.Now.ToString(dateFormatString);
</code></pre>
<p>EDIT: According to your comments, you are trying to match the format to that common in the Czech Republic. You should use <code>CultureInfo</code> to do do that:</p>
<pre><code>string properDate = DateTime.Now.ToString(new CultureInfo("cs-CZ"));
</code></pre>
http://stackoverflow.com/questions/1670392/c-datetimepicker-custom-format/1670413#16704131Answer by hmemcpy for C# DateTimePicker Custom Formathmemcpy2009-11-03T21:58:37Z2009-11-03T21:58:37Z<p>You need to set the property <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datetimepicker.format.aspx" rel="nofollow"><code>DateTimePicker.Format</code></a> to <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datetimepickerformat.aspx" rel="nofollow"><code>DateTimePickerFormat.Custom</code></a> and set your desired format in the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datetimepicker.customformat.aspx" rel="nofollow"><code>DateTimePicker.CustomFormat</code></a> property.</p>
http://stackoverflow.com/questions/1670343/need-a-pointer-to-c-article/1670358#16703584Answer by hmemcpy for Need a pointer to C# articlehmemcpy2009-11-03T21:50:17Z2009-11-03T21:50:17Z<p><a href="http://xkcd.com/138/" rel="nofollow"><img src="http://imgs.xkcd.com/comics/pointers.png" title="Every computer, at the unreachable memory address 0x-1, stores a secret. I found it, and it is that all humans ar-- SEGMENTATION FAULT." /></a></p>
http://stackoverflow.com/questions/1532187/how-can-i-determine-which-framework-was-used-to-build-a-particular-windows-deskto/1532269#15322698Answer by hmemcpy for How can I determine which framework was used to build a particular Windows desktop application?hmemcpy2009-10-07T15:13:13Z2009-10-07T15:13:13Z<p>There are several ways to try and detect in which language a particular software was written. Usually, the tools that do that examine the <a href="http://en.wikipedia.org/wiki/Portable%5FExecutable" rel="nofollow">PE Header</a> and try to make an educated guess.</p>
<p>Sometimes authors compress/encrypt the PE in such way that makes this detection next to impossible.</p>
<p>There is an old tool called <a href="http://www.peid.info/" rel="nofollow">PEiD</a> which can help you identify in which language was the software written.</p>
<p><img src="http://i37.tinypic.com/ekqo1z.png" alt="PEiD" /></p>
http://stackoverflow.com/questions/1458496/regular-expression-to-find-querystring-portion-of-a-hyperlink/1479090#14790900Answer by hmemcpy for Regular Expression to find querystring portion of a hyperlinkhmemcpy2009-09-25T19:18:05Z2009-09-25T19:18:05Z<p>Instead of a regular expression, couldn't you just use the <a href="http://msdn.microsoft.com/en-us/library/system.uri.aspx" rel="nofollow"><code>Uri</code></a> class, specifically the <a href="http://msdn.microsoft.com/en-us/library/system.uri.query.aspx" rel="nofollow"><code>Uri.Query</code></a> property?</p>
<p>Example:</p>
<pre><code>Uri uri = new Uri("http://server.com/default.aspx?abc=123");
Console.WriteLine(uri.Query);
</code></pre>
<p>Prints:</p>
<blockquote>
<p><code>?abc=123</code></p>
</blockquote>
http://stackoverflow.com/questions/720678/parse-javascript-code-in-c1Parse JavaScript code in C#hmemcpy2009-04-06T08:56:49Z2009-09-22T21:18:32Z
<p>I have the following JavaScript code as a string literal:</p>
<pre><code>var $Page = new function()
{
var _url= 'http://www.some.url.com';
this.Download = function()
{
window.location = _url;
}
}
</code></pre>
<p>Is there a way I could get the value of the <code>_url</code> variable from my C# code? An open source library perhaps? I did this using a Regular Expression, but I was hoping for a more elegant way.</p>
http://stackoverflow.com/questions/1419913/how-to-visual-studio-2008-resharper-refactor-automate-mixin-pattern/1435525#14355251Answer by hmemcpy for How to (visual studio 2008 / Resharper) refactor / automate mixin patternhmemcpy2009-09-16T21:18:12Z2009-09-16T21:18:12Z<p>You can do it via the <kbd>Alt</kbd>-<kbd>Insert</kbd> (Generate Code) shortcut key. Select <strong>Delegating Members</strong> in the popup, and it will open a dialog in which you can select the methods you want.</p>
<p>Make sure you do this before selecting "Implement Interface", or else you'll end up with duplicate methods, and thus a compilation error.</p>
<p><img src="http://i26.tinypic.com/24mc3yv.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1382950/confusion-over-action-delegate-and-lambda-expressions/1382956#13829560Answer by hmemcpy for Confusion over `Action` delegate and lambda expressionshmemcpy2009-09-05T10:18:25Z2009-09-05T10:18:25Z<p>In C# 2.0, the <code>Action</code> delegate is a <code>void</code> delegate that doesn't accept parameters.
In later versions, there's the generic <code>Action<T></code> delegate, where T specifies the parameter type.</p>
<p>This should work:</p>
<pre><code>var stringAction = new Action<string>(param => StringAction(param));
</code></pre>
<p>or even better:</p>
<pre><code>var stringAction = new Action<string>(StringAction); // using method group conversion
</code></pre>
<p>then, you can call</p>
<pre><code>stringAction("Hello world");
</code></pre>
http://stackoverflow.com/questions/1382922/mono-cecil-vs-postsharp-core-vs-microsoft-cci-for-implementing-aop-framework/1382943#13829432Answer by hmemcpy for Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP frameworkhmemcpy2009-09-05T10:10:41Z2009-09-05T10:15:42Z<p>As with most frameworks that are already out there, I would suggest to you, regarding implementing your own AOP framework: <strong>Don't do it</strong>. There are several already out there, including (soon-to-be) commercially supported PostSharp, and <a href="http://cthru.codeplex.com/Wiki/View.aspx?title=Typemock%20Open-AOP%20API" rel="nofollow">CThru</a>, an AOP framework powered by <a href="http://www.typemock.com/" rel="nofollow">Typemock</a>.</p>
<p>But anyway, I found Mono.Cecil very easy to use. It abstracts away the need to deal with <code>Reflection.Emit</code> nicely, and it has the support of the Mono community.</p>
<p>I suggest you have a look at <a href="http://code.google.com/p/linfu/" rel="nofollow">LinFu</a> - it's an open-source set of libraries, one of them is an AOP framework implemented on top of Mono.Cecil. There is a nice article on <a href="http://www.codeproject.com/KB/cs/LinFuPart6.aspx" rel="nofollow">LinFu AOP</a> on CodeProject.</p>
http://stackoverflow.com/questions/1382873/getting-an-array-of-string-from-an-array-of-objects/1382902#13829024Answer by hmemcpy for Getting an array of string from an array of objectshmemcpy2009-09-05T09:47:29Z2009-09-05T09:47:29Z<p>How about simply:</p>
<pre><code>var tags = new List<Tag> {
new Tag("1", "A"),
new Tag("2", "B"),
new Tag("3", "C"),
};
List<string> names = tags.ConvertAll(t => t.Name);
</code></pre>
<p>No Linq needed, and if you need an array, call <code>ToArray()</code>.</p>
http://stackoverflow.com/questions/30947/visual-studio-08-spell-check-addin/1367502#13675020Answer by hmemcpy for Visual Studio 08 Spell Check Addin?hmemcpy2009-09-02T12:48:34Z2009-09-02T12:48:34Z<p>If you're using <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a>, there's a free addon for it called <a href="http://code.google.com/p/agentsmithplugin/" rel="nofollow">Agent Smith Plugin</a>. One of its many features is a built in spell checker, that allows fixing the spelling mistakes using the ReSharper shortcut key, <kbd>Alt</kbd>-<kbd>Enter</kbd>.</p>
http://stackoverflow.com/questions/1336635/resharper-the-condition-project-null-is-false/1343003#13430032Answer by hmemcpy for Resharper "The condition (project != null) is false"hmemcpy2009-08-27T18:36:09Z2009-08-27T18:42:01Z<p>Try installing a later build of ReSharper from the <a href="http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+4.5+Nightly+Builds" rel="nofollow">Nightly Builds site</a>. I recently installed build 1277, and it's very stable and great.</p>
<p>Also, try deleting the ReSharper cache from the root of your solution (folder starting with <code>_ReSharper.*</code>), and if you have any 3<sup>rd</sup> party plugins, such as <a href="http://www.agentsmithplugin.com/" rel="nofollow">Agent Smith</a>, try disabling them (in ReSharper → Plugins).</p>
http://stackoverflow.com/questions/1332658/error-do-not-override-object-finalize-instead-provide-a-destructor/1332671#13326719Answer by hmemcpy for Error: Do not override object.Finalize. Instead, provide a destructorhmemcpy2009-08-26T06:21:16Z2009-08-26T06:21:16Z<p><code>Finalize()</code> is a special method that you can't override in code. Use the destructor syntax instead:</p>
<pre><code>~Kiosk()
{
Dispose(false);
}
</code></pre>
http://stackoverflow.com/questions/1316626/does-every-type-in-net-inherit-from-sytem-object/1316633#13166334Answer by hmemcpy for Does every type in .net inherit from Sytem.Object?hmemcpy2009-08-22T18:14:24Z2009-08-22T18:14:24Z<p>Just few weeks ago <a href="http://stackoverflow.com/users/88656/eric-lippert">Eric Lippert</a> blogged about this: <a href="http://blogs.msdn.com/ericlippert/archive/2009/08/06/not-everything-derives-from-object.aspx" rel="nofollow">Not everything derives from object</a>. A great read.</p>
http://stackoverflow.com/questions/1286806/resharper-formatting-align-equal-operands/1288560#12885604Answer by hmemcpy for ReSharper formatting: align equal operandshmemcpy2009-08-17T15:19:20Z2009-08-18T07:17:29Z<p>There is (currently) no way to do this out of the box in ReSharper. Fortunately, ReSharper has a very rich extensibility API (albeit poorly documented). I've spent a lot of time with Reflector trying to figure things out.</p>
<p>We use a similar alignment guideline for class members in a company I work for (to the extreme, we also align method parameters). I wrote a plugin for ReSharper to help me do just that. It's a "Code Cleanup" module, which runs sometime during the code cleanup (<kbd>Ctrl</kbd>-<kbd>E</kbd>, <kbd>Ctrl</kbd>-<kbd>F</kbd>) and aligns the code for you. It also makes the class <code>sealed</code>, if possible.</p>
<p><strong>Some examples</strong>:</p>
<p><em>Method parameters:</em></p>
<pre><code>public void DoSomething(string name,
int age,
IEnumerable coll)
</code></pre>
<p>(you will need to change <strong>Wrap formal parameters</strong> to <strong>Chop always</strong> in <strong>Options->Formatting Style->Line Breaks and Wrapping</strong> for this to work properly)</p>
<p><em>Constants:</em></p>
<pre><code>private const int RESOURCEDISPLAYTYPE_DOMAIN = 0x00000001;
private const int CONNECT_COMMANDLINE = 0x00000800;
private const int CONNECT_INTERACTIVE = 0x00000008;
private const string RESOURCE_NAME = "Unknown";
</code></pre>
<p><hr>
You can download the source code from <a href="http://cid-86665d02cd7ef5cf.skydrive.live.com/self.aspx/Public/MyCompany.CodeFormatter.zip" rel="nofollow">my SkyDrive</a>. Please note that you'll need several things to compile/debug it:</p>
<ol>
<li><p>Update the <code>Command Line Arguments</code>
in <code>Debug</code> tab in <code>Project
Properties</code> with the correct path of
the output DLL:</p>
<blockquote>
<p><code>/ReSharper.Plugin</code>
<code>"X:\<projects>\MyCompany.CodeFormatter\MyCompany.CodeFormatter\bin\Debug\MyCompany.CodeFormatter.dll"</code></p>
</blockquote>
<p>This allows debugging the plugin via
<kbd>F5</kbd>, and it will be
automatically installed in
ReSharper's Plugins in the new
Visual Studio instance which will
open.</p></li>
<li>The plugin is for ReSharper 4.5 and it references the DLLs of this version. If you installed ReSharper anywhere else except <code>C:\Program Files\JetBrains\ReSharper</code>, you will have to fix the references.</li>
<li>This does not align variables inside methods, but it shouldn't be hard to add :)</li>
</ol>
<p>After you install this, just run <code>Code Cleanup</code> to fix your alignment (I never got a reply from JetBrains about how to do this during brace/semicolon formatting, unfortunately).</p>
<p>Assembly was renamed to protect the innocent :)</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1284080/get-a-video-files-details/1284109#12841090Answer by hmemcpy for Get a Video File’s Detailshmemcpy2009-08-16T11:35:49Z2009-08-16T11:35:49Z<p><a href="http://mediainfo.sourceforge.net/en" rel="nofollow">MediaInfo</a> is a great open source library for that purpose (the DLL is licensed LGPL). The download package contains sample application in C# (under <code>Developers\Project\MSCS\Example</code>)</p>
http://stackoverflow.com/questions/1136033/where-is-xcode-located-on-the-hard-drive/1136045#11360455Answer by hmemcpy for Where is Xcode located on the hard drive?hmemcpy2009-07-16T07:52:18Z2009-07-16T07:52:18Z<p>Use Spotlight, and just type <code>xcode</code>. You will see it.</p>
http://stackoverflow.com/questions/1131758/nunit-cleanup-after-test-failure/1134689#11346892Answer by hmemcpy for NUnit - cleanup after test failurehmemcpy2009-07-15T23:44:04Z2009-07-15T23:55:38Z<p>This idea got me interested, so I did a little digging. NUnit doesn't have this ability out of the box, but there is a whole extensibility framework supplied with NUnit. I found <a href="http://www.simple-talk.com/dotnet/.net-tools/testing-times-ahead-extending-nunit/" rel="nofollow">this great article about extending NUnit</a> - it was a good starting point. After playing around with it, I came up with the following solution: a method decorated with a custom <code>CleanupOnError</code> attribute will be called if one of the tests in the fixture failed.</p>
<p>Here's how the test looks like:</p>
<pre><code> [TestFixture]
public class NUnitAddinTest
{
[CleanupOnError]
public static void CleanupOnError()
{
Console.WriteLine("There was an error, cleaning up...");
// perform cleanup logic
}
[Test]
public void Test1_this_test_passes()
{
Console.WriteLine("Hello from Test1");
}
[Test]
public void Test2_this_test_fails()
{
throw new Exception("Test2 failed");
}
[Test]
public void Test3_this_test_passes()
{
Console.WriteLine("Hello from Test3");
}
}
</code></pre>
<p>where the attribute is simply:</p>
<pre><code> [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class CleanupOnErrorAttribute : Attribute
{
}
</code></pre>
<p>And here is how it's executed from the addin:</p>
<pre><code>public void RunFinished(TestResult result)
{
if (result.IsFailure)
{
if (_CurrentFixture != null)
{
MethodInfo[] methods = Reflect.GetMethodsWithAttribute(_CurrentFixture.FixtureType,
CleanupAttributeFullName, false);
if (methods == null || methods.Length == 0)
{
return;
}
Reflect.InvokeMethod(methods[0], _CurrentFixture);
}
}
}
</code></pre>
<p>But here's the tricky part: the addin must be placed in the <code>addins</code> directory next to the NUnit runner. Mine was placed next to the NUnit runner in TestDriven.NET directory: </p>
<blockquote>
<p><code>C:\Program Files\TestDriven.NET 2.0\NUnit\addins</code></p>
</blockquote>
<p>(I created the <code>addins</code> directory, it wasn't there)</p>
<p><strong>EDIT</strong> Another thing is that the cleanup method needs to be <code>static</code>!</p>
<p>I hacked together a simple addin, you can download the source from <a href="http://cid-86665d02cd7ef5cf.skydrive.live.com/self.aspx/Public/NUnit.Addin.zip" rel="nofollow">my SkyDrive</a>. You will have to add references to <code>nunit.framework.dll</code>, <code>nunit.core.dll</code> and <code>nunit.core.interfaces.dll</code> in the appropriate places.</p>
<p>A few notes: The attribute class can be placed anywhere in your code. I didn't want to place it in the same assembly as the addin itself, because it references two <code>Core</code> NUnit assemblies, so I placed it in a different assembly. Just remember to change the line in the <code>CleanAddin.cs</code>, if you decide to put it anywhere else.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/514781/intercepting-the-fn-key-on-laptops2Intercepting the Fn key on laptopshmemcpy2009-02-05T06:20:06Z2009-07-15T07:36:30Z
<p>Sometimes when I work on Thinkpads/MSI laptops, the Ctrl and Fn key are swapped (Fn being the leftmost key), and it drives me nuts - I keep hitting Fn instead of Ctrl.</p>
<p>I was wondering if it's at all possible to intercept the Fn key. I'd like to write a hook that swaps the Ctrl/Fn keys, but it seems that Fn is not being processed by the OS at all. </p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1006530/c-how-to-call-a-second-level-base-class-method-like-base-base-gethashcode/1006759#10067593Answer by hmemcpy for C#: How to call a second-level base class method like base.base.GetHashCode()hmemcpy2009-06-17T12:41:47Z2009-06-17T12:55:15Z<p>You can use <code>RuntimeHelpers.GetHashCode(object)</code> to get the original hash code of the object:</p>
<pre><code> class A
{
public override int GetHashCode()
{
Console.WriteLine("base hashcode is: " + base.GetHashCode());
return 1;
}
}
class Program
{
public static void Main(string[] args)
{
A a = new A();
Console.WriteLine("A's hashcode: " + a.GetHashCode());
Console.WriteLine("A's original hashcode: " + RuntimeHelpers.GetHashCode(a));
}
}
</code></pre>
<p>This produces the following result:</p>
<blockquote>
<p>base hashcode is: 54267293<br />
A's hashcode: 1<br />
A's original hashcode: 54267293</p>
</blockquote>
<p>If you take a look at <code>RuntimeHelpers.GetHashCode(object)</code> in Reflector, you'll see that it calls the internal static method <code>object.InternalGetHashCode(object)</code>. If you'd like to know more, have a look at <a href="http://stackoverflow.com/questions/720177/default-implementation-for-object-gethashcode">this question</a> regarding the default implementation of GetHashCode.</p>
http://stackoverflow.com/questions/1000052/red-cross-problem-on-menustrip-and-toolstrip/1000127#10001271Answer by hmemcpy for "Red Cross" problem on MenuStrip and ToolStriphmemcpy2009-06-16T08:07:41Z2009-06-16T08:07:41Z<p>This is a common occurrence when there's a GDI+ problem ("The Red X of Death"). Are you doing any custom drawing in <code>OnPaint</code>? Or perhaps there's a graphic resource or a glyph which is corrupt or being improperly disposed of.</p>
<p><strong>Edit:</strong> I've re-read your question. You seem to have this only on one of the machines. I've googled around a bit for this, and I stumbled upon <a href="http://www.developmentnow.com/g/20%5F2006%5F2%5F0%5F0%5F689988/A-generic-error-occurred-in-GDI-exception-and-Red-X-displayed-on-Form.htm" rel="nofollow">this old thread</a>. The post at the bottom suggests that there might be an issue with Virtual Memory turned off:</p>
<blockquote>
<p>We did manage to solve this - we were
seeing the problem on a device running
XP embedded. The XPe image developer
had turned off Virtual Memory and as
soon as we turned it on the problem
went away. I believe it is just a
symptom of the system running out of
memory to display the graphics (maybe
particularly if you use a lot of
double buffering)</p>
</blockquote>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/148298/how-to-check-for-equals-0-i-or-i-0/999728#9997280Answer by hmemcpy for How to check for equals? (0 == i) or (i == 0)hmemcpy2009-06-16T05:37:11Z2009-06-16T05:37:11Z<p>I'm just happy that ReSharper includes a shortcut <code>Ctrl-Alt-Shift + Left/Right</code> that moves the variables. If I come across code that doesn't follow my particular convention, I can instantly change it.</p>
http://stackoverflow.com/questions/997781/how-do-i-set-up-visual-studio-to-work-with-net-3-5-cf/998047#9980470Answer by hmemcpy for How do I set up visual studio to work with .net 3.5 CF?hmemcpy2009-06-15T19:53:09Z2009-06-15T19:53:09Z<p>Your project is probably targeting framework 2.0.</p>
<p>Have your project target .NET 3.0 or 3.5 to have the "Add Service Reference" option added.</p>
http://stackoverflow.com/questions/995661/getting-value-from-var/995681#9956810Answer by hmemcpy for Getting value from VARhmemcpy2009-06-15T11:49:38Z2009-06-15T11:56:56Z<p>Try the following:</p>
<pre><code>var validate = (from P in this.DataContext.Persons
where P.UserName.Equals(login) && P.Password.Equals(password)
select new
{
P.FirstName,
P.LastName,
P.EmailAddress
}).FirstOrDefault();
if (validate != null)
{
var firstName = validate.FirstName;
...
}
</code></pre>
http://stackoverflow.com/questions/969033/change-pinned-taskbar-icon-windows-7/990521#9905217Answer by hmemcpy for Change pinned taskbar icon (windows 7)hmemcpy2009-06-13T11:07:12Z2009-06-15T07:21:00Z<p>There is a <a href="http://blogs.microsoft.co.il/blogs/sasha/archive/2009/02/12/windows-7-taskbar-apis.aspx" rel="nofollow">series of articles</a> on the new Taskbar API by the debugging guru <a href="http://blogs.microsoft.co.il/blogs/sasha/" rel="nofollow">Sasha Goldshtein</a>. You should have a look at the <a href="http://blogs.microsoft.co.il/blogs/sasha/archive/2009/02/16/windows-7-taskbar-overlay-icons-and-progress-bars.aspx" rel="nofollow">Overlay Icons and Progress Bars API</a>.</p>
<p>You can download the sample code from <a href="http://code.msdn.microsoft.com/Windows7Taskbar" rel="nofollow">Windows 7 Taskbar Developer Resources</a> on Microsoft Code. What you're looking for is the <code>IMClient</code> sample:</p>
<blockquote>
<p>The IMClient sample demonstrates how
taskbar overlay icons and taskbar
progress bars can light up an
application’s taskbar button instead
of relying on an additional dialog or
on an icon in the system notification
area (tray).</p>
<p><img src="http://blogs.microsoft.co.il/blogs/sasha/image%5Fthumb%5F1DD568AF.png" alt="alt text" />
<img src="http://blogs.microsoft.co.il/blogs/sasha/image%5Fthumb%5F70B05613.png" alt="alt text" />
<img src="http://blogs.microsoft.co.il/blogs/sasha/image%5Fthumb%5F51C9BC68.png" alt="alt text" /></p>
</blockquote>
<p>I believe this should help you achieve what you want.</p>
http://stackoverflow.com/questions/938351/in-c-what-type-are-integer-literals/938381#9383813Answer by hmemcpy for In C# what type are integer literals?hmemcpy2009-06-02T07:51:16Z2009-06-02T08:45:56Z<p>Take a look at the <a href="http://msdn.microsoft.com/en-us/library/aa664674%28VS.71%29.aspx" rel="nofollow">integer literals specification</a>:</p>
<blockquote>
<p>The type of an integer literal is
determined as follows:</p>
<ul>
<li>If the literal has no suffix, it has the first of these types in which
its value can be represented: int, uint, long, ulong.</li>
<li>If the literal is suffixed by U or u, it has the first of these types
in which its value can be represented: uint, ulong.</li>
<li>If the literal is suffixed by L or l, it has the first of these types
in which its value can be represented: long, ulong.</li>
<li>If the literal is suffixed by UL, Ul, uL, ul, LU, Lu, lU, or lu, it
is of type ulong.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/931146/what-do-you-tell-people-your-profession-is/931346#9313460Answer by hmemcpy for What do you tell people your profession is?hmemcpy2009-05-31T05:07:12Z2009-05-31T05:07:12Z<p><a href="http://www.dilbert.com/strips/comic/2008-03-04/" rel="nofollow">Software Simian</a></p>
http://stackoverflow.com/questions/910499/if-you-had-to-create-something-like-resharper-where-would-you-start/910689#9106892Answer by hmemcpy for If you had to create something like ReSharper, where would you start?hmemcpy2009-05-26T13:30:05Z2009-05-26T13:36:08Z<p>I had the pleasure of writing some plugins for ReSharper to make additional changes to the code layout and style (as per coding guidelines of a company I work at). It's not very easy, but the API is fairly rich, albeit very poorly documented, so using Reflector will be mandatory.</p>
<p>I would suggest looking at the source code for great existing plugins, such as <a href="http://code.google.com/p/agentjohnsonplugin/" rel="nofollow">Agent Johnson</a> and <a href="http://www.codeplex.com/StyleCopForReSharper" rel="nofollow">StyleCop for ReSharper</a>. You can also try to get help at the <a href="http://www.jetbrains.net/devnet/community/resharper/resharper%5Fopen%5Fapi" rel="nofollow">ReSharper Open API</a> forums at JetBrains.</p>
<p><strong>EDIT:</strong> Apparently I can't read. I thought you meant plugins <strong>for</strong> ReSharper. In that case I would begin by starting with the Visual Studio SDK, learning how to interact with the code, build the AST, etc. There are many examples provided in the SDK.</p>
http://stackoverflow.com/questions/1858217/is-this-possible-in-c/1858268#1858268Comment by hmemcpy on Is this possible in C#?hmemcpy2009-12-07T08:52:59Z2009-12-07T08:52:59Z@silky And how, pray tell, would you solve this yourself?http://stackoverflow.com/questions/1797984/anyone-tried-justcode/1812289#1812289Comment by hmemcpy on Anyone tried JustCode? hmemcpy2009-11-28T11:57:16Z2009-11-28T11:57:16ZYou can highlight usages in ReSharper by pressing Alt-Shift-F11 (VS key mapping), then Esc on any highlighted item to cancel.http://stackoverflow.com/questions/1737443/bool-true-falseComment by hmemcpy on bool true = false?hmemcpy2009-11-15T12:43:25Z2009-11-15T12:43:25ZLooking to get fired?http://stackoverflow.com/questions/1701788/how-to-convert-string-to-arraylistComment by hmemcpy on How to convert string[] to ArrayList?hmemcpy2009-11-09T15:40:34Z2009-11-09T15:40:34ZIs there a particular reason you need to use an <code>ArrayList</code>? Use <code>List<string></code> instead.http://stackoverflow.com/questions/1672547/system-stackoverflowexception/1672619#1672619Comment by hmemcpy on System.StackOverflowException hmemcpy2009-11-04T10:48:36Z2009-11-04T10:48:36Z@Kobi It does when you use VS2008 (even targeting .NET 2.0)http://stackoverflow.com/questions/590159/in-c-does-a-locked-object-stay-locked-if-an-exception-occurs-inside-it/590174#590174Comment by hmemcpy on In c# does a locked object stay locked if an exception occurs inside it?hmemcpy2009-10-01T08:26:27Z2009-10-01T08:26:27ZExcept if a <code>TheadAbortException</code> occurs between the <code>Monitor.Enter</code> and <code>try</code>: <a href="http://blogs.msdn.com/ericlippert/archive/2009/03/06/locks-and-exceptions-do-not-mix.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/…</a>http://stackoverflow.com/questions/1382922/mono-cecil-vs-postsharp-core-vs-microsoft-cci-for-implementing-aop-framework/1382943#1382943Comment by hmemcpy on Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP frameworkhmemcpy2009-09-05T10:33:36Z2009-09-05T10:33:36ZLinFu does that. It has with a post-compiler task to weave the IL.http://stackoverflow.com/questions/1316626/does-every-type-in-net-inherit-from-sytem-object/1316632#1316632Comment by hmemcpy on Does every type in .net inherit from Sytem.Object?hmemcpy2009-08-22T18:14:44Z2009-08-22T18:14:44ZBeat me by 3 seconds :)http://stackoverflow.com/questions/1286806/resharper-formatting-align-equal-operands/1288560#1288560Comment by hmemcpy on ReSharper formatting: align equal operandshmemcpy2009-08-18T16:03:00Z2009-08-18T16:03:00ZI'm glad this is working for you. I haven't looked at it yet, but I think there might be a problem aligning variables - how will you know which ones to align? Unless you define all your variables at the top of the method, this won't really work well. Perhaps this could be implemented as a "quick fix" - highlight the variables you want to align, press Alt-Enter and voilla! :)
I'll look into it later :)http://stackoverflow.com/questions/1131758/nunit-cleanup-after-test-failure/1131828#1131828Comment by hmemcpy on NUnit - cleanup after test failurehmemcpy2009-07-15T15:14:49Z2009-07-15T15:14:49Z@Ray Hayes you don't need to inherit from GlobalSetup. It's executed once per namespace.http://stackoverflow.com/questions/1045250/stacking-and-delaying-multiple-ui-change-notificationsComment by hmemcpy on Stacking and delaying multiple UI change notificationshmemcpy2009-06-25T17:51:43Z2009-06-25T17:51:43ZI don't understand why this was downvoted...http://stackoverflow.com/questions/1045250/stacking-and-delaying-multiple-ui-change-notifications/1045282#1045282Comment by hmemcpy on Stacking and delaying multiple UI change notificationshmemcpy2009-06-25T17:51:11Z2009-06-25T17:51:11Z+1. I was just typing the same answer. I did this just today. I found that the best delay is 500mshttp://stackoverflow.com/questions/1008090/c-enum-values/1008109#1008109Comment by hmemcpy on C# Enum valueshmemcpy2009-06-17T16:29:21Z2009-06-17T16:29:21Z@Ed Woodcock Integers implement IEquatable, and the EqualityComparer which is used by the Dictionary handles that special case. Ayende (author of Rhino Mocks) wrote about it: <a href="http://ayende.com/Blog/archive/2009/02/21/dictionaryltenumtgt-puzzler.aspx" rel="nofollow">ayende.com/Blog/archive/…</a>http://stackoverflow.com/questions/1008090/c-enum-values/1008109#1008109Comment by hmemcpy on C# Enum valueshmemcpy2009-06-17T16:21:14Z2009-06-17T16:21:14ZUnfortunately, Dictionary<Enum, T> would perform horribly: <a href="http://www.codeproject.com/KB/cs/EnumComparer.aspx" rel="nofollow">codeproject.com/KB/cs/…</a>http://stackoverflow.com/questions/1000052/red-cross-problem-on-menustrip-and-toolstrip/1000127#1000127Comment by hmemcpy on "Red Cross" problem on MenuStrip and ToolStriphmemcpy2009-06-16T08:15:05Z2009-06-16T08:15:05ZSorry, I misread your question the 1st time.