User aku - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:49:26Z http://stackoverflow.com/feeds/user/1196 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1123601/wpf-resize-parent-container-when-childs-controltemplate-changes 0 WPF: resize parent container when child's ControlTemplate changes aku 2009-07-14T05:34:41Z 2009-11-26T19:00:03Z <p>I have a custom error template for my TextBox. Something like this:</p> <pre><code>&lt;Style TargetType="{x:Type TextBox}" x:Key="ErrorTemplateStyle"&gt; &lt;Setter Property="Validation.ErrorTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;Border BorderBrush="Orange" BorderThickness="1"&gt; &lt;AdornedElementPlaceholder /&gt; &lt;/Border&gt; &lt;TextBlock Text="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors).CurrentItem}" /&gt; &lt;/StackPanel&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>My TextBox is placed inside of DataGrid's cell. Now when error occurs I want size of that cell to be changed to accomodate new template for my TextBox. Any ideas how this behavior can be achieved?</p> http://stackoverflow.com/questions/53132/mouse-for-programmer 26 Mouse for programmer aku 2008-09-09T23:26:19Z 2009-11-21T11:09:45Z <p>We have <a href="http://beta.stackoverflow.com/questions/687/keyboard-for-programmers" rel="nofollow">discussed</a> keyboards. But take a look at the small piece of plastic to the right (or left :) ) of your beloved keyboard! This humble creature helps you to draw nice forms, and click all around the web. Real programmer mouse must be precise and comfortable, so which mouse would you make a companion to your keyboard?</p> <p>Currently I'm in love with this fat member of mice family:<br /> <strong>Natural wireless laser mouse 6000</strong><br /> <img src="http://www.microsoft.com/hardware/mouseandkeyboard/images/products/nwlm6k/mk_productfeatures_nwlm6k.jpg" alt="Mouse" /></p> http://stackoverflow.com/questions/47343/do-you-know-any-wpf-based-text-editor-control 15 Do you know any WPF based text editor control? aku 2008-09-06T09:00:17Z 2009-11-06T05:04:40Z <p>Note that I'm not looking for something based on TextBox or RichTextBox. What I'm interested in is a text editing control written from scratch using <a href="http://msdn.microsoft.com/en-us/library/ms742190.aspx" rel="nofollow">WPF typography</a> features. Open source would be a plus.</p> http://stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development 16 What tools do you use for WPF development aku 2008-09-02T00:05:59Z 2009-11-04T10:25:47Z <p>What tools beside Visual Studio's Cider do you use?<br> Have you succeed in using something from Microsoft Expression product family?</p> <p><strong>EDIT:</strong><br> <em>Here are revealed tools</em>:</p> <ol> <li><a href="http://blois.us/Snoop/" rel="nofollow">Snoop</a></li> <li><a href="http://www.codeproject.com/KB/macros/MoleForVisualStudioEdit.aspx" rel="nofollow">Mole debugger visualizer</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/aa969767.aspx" rel="nofollow">Perforator</a> suggested by <a href="http://beta.stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development#38644" rel="nofollow">Matt Hamilton</a></li> <li><a href="http://www.microsoft.com/expression/try-it/default.aspx?filter=prerelease" rel="nofollow">The Expression Blend 2.5 Preview</a> suggested by <a href="http://beta.stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development#38658" rel="nofollow">Anthony Conyers</a></li> <li><a href="http://www.kaxaml.com/" rel="nofollow">Kaxaml</a> suggested by <a href="http://beta.stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development#38658" rel="nofollow">Anthony Conyers</a> &amp; <a href="http://beta.stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development#38657" rel="nofollow">Brad Leach</a></li> <li><a href="http://www.mikeswanson.com/xamlexport/" rel="nofollow">Xaml Export</a> suggested by <a href="http://beta.stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development#40326" rel="nofollow">Artur Carvalho</a></li> </ol> <p>Some other related questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/189244/tools-to-develop-wpf-or-silverlight-applications">Tools to develop WPF or Silverlight applications</a></li> <li><a href="http://stackoverflow.com/questions/222070/how-to-speed-up-wpf-programs">How to speed up WPF programs?</a> - has a list of related tools</li> </ul> http://stackoverflow.com/questions/108399/what-embedded-database-with-isolated-storage-support-can-you-recommend 3 What embedded database with Isolated Storage support can you recommend? aku 2008-09-20T14:59:38Z 2009-10-20T04:16:41Z <p>I'm looking for embedded database engine supporting <a href="http://msdn.microsoft.com/en-us/library/3ak841sy(VS.80).aspx" rel="nofollow">isolating storage</a>. Currently I'm aware of VistaDB. What else you can recommend?</p> <p>Requirements are pretty simple:</p> <ul> <li>xcopy deployment </li> <li>support for isolated storage</li> <li>preferably free</li> </ul> <p>Note that you don't know exact path to the file when using IS.</p> http://stackoverflow.com/questions/39583/transactions-best-practices 8 Transactions best practices aku 2008-09-02T13:59:38Z 2009-10-16T15:40:54Z <p>How much do you rely on database transactions? </p> <p>Do you prefer small or large transaction scopes ? </p> <p>Do you prefer client side transaction handling (e.g. TransactionScope in .NET) over server side transactions or vice-versa? </p> <p>What about nested transactions? </p> <p>Do you have some tips&amp;tricks related to transactions ?</p> <p>Any gotchas you encountered working with transaction ?</p> <p>All sort of answers are welcome.</p> http://stackoverflow.com/questions/1483308/best-protocol-technology-for-real-time-server-less-chat-application 0 Best protocol\technology for real-time server-less chat application aku 2009-09-27T10:41:40Z 2009-10-08T10:18:49Z <p>I need to embed chat functionality into .NET application (Windows client app).</p> <p>Requirements:</p> <ul> <li>Preferably server-less/zero-config architecture (p2p), but not required</li> <li>Based on open standards (XMPP alike)</li> <li>Implementation (library) for .NET (native C/C++ is OK too) exists</li> </ul> <p>What can you recommend? Currently I'm looking at XMPP/Jabber, do you have any experience using it in your apps?</p> http://stackoverflow.com/questions/1510320/given-an-xsd-is-it-possible-to-list-a-hierarchy-of-elements-and-their-attributes/1510387#1510387 1 Answer by aku for Given an XSD is it possible to list a hierarchy of elements and their attributes? aku 2009-10-02T15:51:53Z 2009-10-02T15:51:53Z <p>Since XSD is valid XML document it just a matter of selecting XML parsing library of your choice. For example XLinq (.NET FW 3+) will do the job.</p> <p>You can just walk through <strong>complexType</strong>, <strong>sequence</strong> and other elements to find out a list of possible values. </p> http://stackoverflow.com/questions/1509442/c-linq-style-for-each/1509459#1509459 0 Answer by aku for C#: Linq style "For Each" aku 2009-10-02T13:18:39Z 2009-10-02T13:18:39Z <p><a href="http://stackoverflow.com/questions/200574/linq-equivalent-of-foreach-for-ienumerable">http://stackoverflow.com/questions/200574/linq-equivalent-of-foreach-for-ienumerable</a></p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187140#187140 4 Answer by aku for What is the single task in your development activity you would like to see automated? aku 2008-10-09T12:59:52Z 2009-09-30T10:54:50Z <p>Another feature I find useful is coding rules checking tool. Something like StyleCop. I want to have an easy tool to create code patterns/rules that can be applied to code base. Such functionality could save me a lot of time during code reviews. For example, I can define pattern (in pseudo code):</p> <pre><code>catch (.+) { &lt;empty&gt; } // Matches empty catch blocks </code></pre> <p>NDepend includes CQL (code query language). It would be really cool to have something like this in ReSharper (it will analyze actual code instead of MSIL)</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/126181#126181 18 Answer by aku for Hidden .NET Base Class Library Classes? aku 2008-09-24T09:22:32Z 2009-09-29T14:57:13Z <h3><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx" rel="nofollow">TypeConverter</a> class</h3> <p>It saved me a lot of time. And it helped Stack Overflow users to solve their problems:</p> <ul> <li><a href="http://stackoverflow.com/questions/118719/how-do-i-effectively-persist-a-net-font-object">How do I effectively persist a .NET font object ?</a></li> <li><a href="http://stackoverflow.com/questions/110763/how-to-convert-from-decimal-to-t">How to convert from Decimal to T?</a></li> <li><a href="http://stackoverflow.com/questions/116797/passing-int-array-as-parameter-in-web-user-control">Passing int array as parameter in web user control</a></li> <li><a href="http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums/796897">How do I override ToString in C# enums?</a></li> </ul> http://stackoverflow.com/questions/1484675/help-me-please-with-writing-a-plug-in-in-c-which-exports-its-on-let-say-config/1485176#1485176 1 Answer by aku for Help me please with writing a Plug-in in C# which exports it's on let say Config GUI. aku 2009-09-28T02:45:10Z 2009-09-28T02:45:10Z <p>It might be a little offtopic but I would recommend you to learn following libraries for plugins development instead of creating your own:</p> <p><a href="http://www.codeplex.com/MEF" rel="nofollow">Managed Extensibility Framework</a></p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc163476.aspx" rel="nofollow">System.AddIn Namespace</a></p> <p>If your goal is just learning then your code might be OK, but in real-world scenarios you should use proven solutions like those mentioned above.</p> <p>Also I want to mention that MEF is open-source project and you can possibly find answers on many questions regarding plugins architecture.</p> http://stackoverflow.com/questions/1483271/hide-app-config/1483328#1483328 1 Answer by aku for Hide app.config aku 2009-09-27T10:53:50Z 2009-09-27T10:53:50Z <p>I think that encrypting app/web config would be a better option.</p> <p>See this topic for more info <a href="http://stackoverflow.com/questions/54200/encrypting-appsettings-in-web-config">Encrypting appSettings in web.config</a></p> <p>Also codeproject has a plenty of <a href="http://www.google.ru/search?q=codeproject+encrypt+web+config" rel="nofollow">articles</a>.</p> http://stackoverflow.com/questions/1482986/naming-guidelines-with-c/1483004#1483004 2 Answer by aku for Naming guidelines with C#. aku 2009-09-27T07:19:36Z 2009-09-27T07:19:36Z <p>According to MS standards your code is OK. Having prefixes as m_ is not really necessary when you have advanced IDE. However short prefix like <strong>_</strong> can be used to take advantage of auto complete feature to quickly sort out class members.</p> <p>I would recommend you to get a copy of "<a href="http://rads.stackoverflow.com/amzn/click/0321246756" rel="nofollow">Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries</a>" book to learn more on MS standards</p> http://stackoverflow.com/questions/1482958/should-a-technical-team-lead-be-the-most-technically-versed-on-the-team/1482970#1482970 1 Answer by aku for Should a Technical Team Lead be the most technically-versed on the team? aku 2009-09-27T07:03:45Z 2009-09-27T07:03:45Z <p>I guess it is a problem that all team leaders emerged from programmers are facing including myself. Giving that you will be doing PM\TL activities most of the time it is inevitable that the distance between you and top-coders will be increasing. Personally I think it is not a problem as long as you can trust your programmers. Of course you should stay tech-savvy to understand what is going on and not looking too stupid during some technical discussions but having in-depth knowledge is not required at this stage of a career. I'm senior PM right now and at the first time I felt quite uncomfortably that I don't write some important code myself or don't know all nuts and bolts of some new technology but as long as I have right people for such tasks it is not a problem anymore.</p> http://stackoverflow.com/questions/1482923/windows-folder-desktop-widget/1482961#1482961 0 Answer by aku for Windows Folder/Desktop Widget aku 2009-09-27T06:53:17Z 2009-09-27T06:53:17Z <p>I'm not 100% sure but it seems that you will need to create shell extension and doing so in managed language is not recommended by Microsoft due to possible problems with .NET runtime initialization.</p> http://stackoverflow.com/questions/1480324/project-management-software-that-scales-well 0 Project management software that scales well aku 2009-09-26T03:09:30Z 2009-09-26T03:32:03Z <p>Can you recommend PM/PPM management software that scales well? </p> <p>When I deal with a single project <a href="http://www.redmine.org/" rel="nofollow"><code>Redmine</code></a> does it job perfectly (well, almost), but when I have dozens of projects on my hands it becomes quite difficult to allocate resources and do some future planning.</p> <p>I'm looking for some system that treats project not as a highest level of hierarchy but as a part of something bigger. Especially I need resource management features - I want to have some kind of calendar\schedule to track people workload.</p> <p>I saw a couple of related questions on SO regarding PM software and I would really appreciate if you can recommend something described above basing on your own experience.</p> http://stackoverflow.com/questions/1388361/getting-all-unique-items-in-a-c-list/1388368#1388368 2 Answer by aku for Getting all unique Items in a C# list aku 2009-09-07T09:10:24Z 2009-09-07T09:10:24Z <p>You can use <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336761.aspx#distinct1" rel="nofollow">Distinct</a> extension method from LINQ</p> http://stackoverflow.com/questions/1355509/boxes-linked-by-smart-lines-whats-this-called-hows-it-done/1355582#1355582 4 Answer by aku for Boxes linked by 'smart lines' - what's this called ? How's it done ? aku 2009-08-31T02:35:27Z 2009-08-31T02:35:27Z <p>I believe that most common name is "connectors". You can draw them using <a href="http://en.wikipedia.org/wiki/Pathfinding" rel="nofollow">pathfinding</a> algorithm (depends on how your objects are represented)</p> <p><a href="http://www.codeproject.com/KB/WPF/WPFDiagramDesigner%5FPart1.aspx" rel="nofollow">Here</a> is an example of designer that implements what you described.</p> http://stackoverflow.com/questions/1355524/which-syntax-and-architecture-of-assembly-is-most-useful-to-know/1355546#1355546 0 Answer by aku for Which syntax and architecture of assembly is most useful to know? aku 2009-08-31T02:22:48Z 2009-08-31T02:22:48Z <p>It's quite hard to tell which assembly is "most useful" unless you choose platform you want to use. </p> <p>If you go for PC (intel, amd) start with x86 assembly. There is a common instruction set for different CPUs + some technology specific instructions like SSE. If you want to develop for Windows have a look at MASM, for Unix FASM would be a good choice.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114616#114616 6 Answer by aku for What are Code Smells? What is the best way to correct them? aku 2008-09-22T12:41:31Z 2009-08-28T18:10:11Z <h3>Checking for file existence before trying to access it (instead of I/O error handling).</h3> <p>Common error of novice programmers. Instead of handling I/O exceptions, they check file for existence.</p> <p>Forget about <em>File.Exists</em>-like methods unless you use files as markers\locking objects. Always handle file I/O errors when trying to read/write some meaningful data.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114546#114546 9 Answer by aku for What are Code Smells? What is the best way to correct them? aku 2008-09-22T12:28:14Z 2009-08-28T17:47:04Z <h3>Returning more data that needed</h3> <p>Example:</p> <pre><code>List&lt;Foo&gt; Foos; // returns List&lt;T&gt; to provide access to List.Count property </code></pre> <p>Often this leads to misuse of data structures and unwanted data modifications.</p> <p>Consider providing as much data as needed.</p> <pre><code>IEnumerable&lt;Foo&gt; Foos; // Returns iterable collections of Foos. int FooCount; // Returns number of Foo objects. </code></pre> http://stackoverflow.com/questions/1344424/resharper-changing-fields-to-readonly/1344436#1344436 7 Answer by aku for Resharper changing fields to readonly aku 2009-08-28T00:26:03Z 2009-08-28T00:26:03Z <p><a href="http://stackoverflow.com/questions/277010/what-are-the-benefits-to-marking-a-field-as-readonly-in-c">What are the benefits to marking a field as <code>readonly</code> in C#?</a></p> http://stackoverflow.com/questions/1344300/generating-comment-header-in-visual-studio/1344305#1344305 3 Answer by aku for Generating Comment Header in Visual Studio aku 2009-08-27T23:41:36Z 2009-08-27T23:41:36Z <p>Take a look at <a href="http://submain.com/GhostDoc" rel="nofollow">GhostDoc</a> add-in. AFAIK it can't automatically run through the code and add comments, but it will save you a lot of typing</p> http://stackoverflow.com/questions/1328318/is-entity-framework-provider-for-firebird-reliable-enought 0 Is Entity Framework provider for Firebird reliable enought? aku 2009-08-25T13:35:50Z 2009-08-25T20:28:01Z <p>Has anybody tried to use EF provider (.NET 3.5 SP1) for Firebird (embedded server in my case) in production? Can it be considered stable enough for commercial development?</p> http://stackoverflow.com/questions/1236486/eclipse-like-features-in-visual-studio/1236494#1236494 1 Answer by aku for Eclipse-like features in Visual Studio aku 2009-08-06T01:03:26Z 2009-08-06T01:03:26Z <p>I didn't see highlighting feature in VS2005-2008 but you can get it and many other nice features after installing ReSharper add-in.</p> http://stackoverflow.com/questions/1123062/mvvm-pattern-idataerrorinfo-and-binding-to-display-error/1123507#1123507 3 Answer by aku for MVVM pattern, IDataErrorInfo and Binding to display error? aku 2009-07-14T04:59:41Z 2009-07-14T04:59:41Z <p>I was looking at the same sample just a few minutes ago. Your guess is righ. In this code sample they removed default ErrorTemplate from TextBox control so it would't show red rectangle. Instead of using ErrorTemplate they create ContentProvider with content bound to validation error of specific text box.</p> http://stackoverflow.com/questions/38652/do-you-use-microsofts-prism-compositewpf-in-commercial-development 7 Do you use Microsoft's Prism (CompositeWPF) in commercial development? aku 2008-09-02T00:28:45Z 2009-06-26T12:45:53Z <p>Are you using or going to use Prism? I had experience with Composite Application block (composite UI for WinForms) and can say that it's an overengineered hard to use framework. I've taken a look at Prism and it seems to be better designed e.g. simple to use and fast. What do you think?</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114410#114410 105 Answer by aku for What are Code Smells? What is the best way to correct them? aku 2008-09-22T11:52:11Z 2009-06-26T03:46:56Z <p><strong>Huge code blocks in <code>switch</code> statements.</strong> Move code to separate functions. Consider using a function table (dictionary).</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62195#62195 47 Answer by aku for Stack overflow code golf aku 2008-09-15T11:21:28Z 2009-06-22T18:24:56Z <p>C#: </p> <pre><code>public int Foo { get { return Foo; } } </code></pre> http://stackoverflow.com/questions/108399/what-embedded-database-with-isolated-storage-support-can-you-recommend/1592400#1592400 Comment by aku on What embedded database with Isolated Storage support can you recommend? aku 2009-10-21T09:21:20Z 2009-10-21T09:21:20Z Yeah, it seems that VistaDB is the best choice. I've tried it in several projects and it was a very nice experience. http://stackoverflow.com/questions/1483308/best-protocol-technology-for-real-time-server-less-chat-application/1496289#1496289 Comment by aku on Best protocol\technology for real-time server-less chat application aku 2009-09-30T11:14:21Z 2009-09-30T11:14:21Z @Tom, thanks for feedback. I know how these things work. I just want to get feedback from somebody who has experience with mentioned protocols\technologies. My #1 goal is simplicity - ideally clients shouldn't do any setup. Second goal is reliability, if server goes down I want my clients to keep talking. XMPP seems to be the best choice. I'm evaluation existing XMPP implementations right now. http://stackoverflow.com/questions/1483308/best-protocol-technology-for-real-time-server-less-chat-application Comment by aku on Best protocol\technology for real-time server-less chat application aku 2009-09-27T11:45:27Z 2009-09-27T11:45:27Z @reinier, in my case it is not a problem clients will be in intranet most of the time http://stackoverflow.com/questions/1483308/best-protocol-technology-for-real-time-server-less-chat-application Comment by aku on Best protocol\technology for real-time server-less chat application aku 2009-09-27T11:44:31Z 2009-09-27T11:44:31Z @reinier, see XEP-0174: Serverless Messaging http://stackoverflow.com/questions/1482986/naming-guidelines-with-c/1483004#1483004 Comment by aku on Naming guidelines with C#. aku 2009-09-27T07:26:05Z 2009-09-27T07:26:05Z @EdSwangren, it is very unusual situation when you have to use &quot;this.&quot; construction. if you are using descriptive names you will find that the only place you need it (but not required to) is constructor http://stackoverflow.com/questions/1482958/should-a-technical-team-lead-be-the-most-technically-versed-on-the-team/1482966#1482966 Comment by aku on Should a Technical Team Lead be the most technically-versed on the team? aku 2009-09-27T07:11:04Z 2009-09-27T07:11:04Z @Phil.Wheeler, it's quite an ironical situation. leaders usually being chosen from best devs, but best devs should do what they are good at - development :) http://stackoverflow.com/questions/1480324/project-management-software-that-scales-well/1480357#1480357 Comment by aku on Project management software that scales well aku 2009-09-26T03:57:55Z 2009-09-26T03:57:55Z did you try it in practice? how many projects in parallel did you track with MSPS ? http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114793#114793 Comment by aku on What are Code Smells? What is the best way to correct them? aku 2009-09-26T03:14:35Z 2009-09-26T03:14:35Z @hasen j, there is a difference between &quot;how it does&quot; and &quot;what it does&quot; while &quot;how&quot; part can take a while to understand, &quot;what&quot; part should be obvious from comments\names. As for GIT code base it is a perfect example of crazy-nobody-understand code. http://stackoverflow.com/questions/65664/free-project-management-software/65762#65762 Comment by aku on Free Project management software aku 2009-09-26T03:00:00Z 2009-09-26T03:00:00Z We are using Redmine in our company. It's a very good piece of software when you dealing with one or two projects but it is unsuitable when you have dozens of projects on your hand. I agree that it is targeted more towards developers. http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding Comment by aku on how to keep yourself from perfectionism when coding aku 2009-08-23T23:02:16Z 2009-08-23T23:02:16Z similar question <a href="http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing" rel="nofollow" title="how to psyche yourself to just program the damn thing">stackoverflow.com/questions/544430/&hellip;</a> http://stackoverflow.com/questions/1123601/wpf-resize-parent-container-when-childs-controltemplate-changes Comment by aku on WPF: resize parent container when child's ControlTemplate changes aku 2009-07-24T02:46:58Z 2009-07-24T02:46:58Z Yes, I use one from WPF toolkit http://stackoverflow.com/questions/48337/modern-books-on-algorithms/48374#48374 Comment by aku on Modern books on algorithms aku 2009-02-03T12:18:45Z 2009-02-03T12:18:45Z ShreevatsaR, comments were absent in intial version of StackOverflow http://stackoverflow.com/questions/47343/do-you-know-any-wpf-based-text-editor-control/414259#414259 Comment by aku on Do you know any WPF based text editor control? aku 2009-01-30T16:10:12Z 2009-01-30T16:10:12Z Looks promising. Can't wait to put in Reflector :) Does it have extensibility points? http://stackoverflow.com/questions/495675/standardized-approach-to-digital-signatures-of-files-via-net/495729#495729 Comment by aku on Standardized approach to digital signatures of files via .NET aku 2009-01-30T15:31:38Z 2009-01-30T15:31:38Z I'm glad it was helpful. By the way I have your blog in my RSS reader and really enjoyed it :) http://stackoverflow.com/questions/495591/what-advantage-do-you-get-with-a-collection-over-listof-t-in-net-2-0/495636#495636 Comment by aku on What advantage do you get with a collection over List(Of T) in .NET 2.0+ aku 2009-01-30T14:29:34Z 2009-01-30T14:29:34Z Also CLR doesn't affect BCL, so how can it affect List&lt;T&gt; ?