User Sun Liwen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:52:05Z http://stackoverflow.com/feeds/user/47441 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/164809/what-are-the-most-relevant-oss-projects-for-net/455566#455566 0 Answer by Sun Liwen for What are the most relevant OSS projects for .NET? Sun Liwen 2009-01-18T17:45:40Z 2009-01-18T17:45:40Z <p><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a> - An open source and even better replacement to System.Reflection. :)</p> http://stackoverflow.com/questions/389968/source-code-analysis-tools-for-c/390029#390029 2 Answer by Sun Liwen for Source code analysis tools for C# Sun Liwen 2008-12-23T20:37:42Z 2008-12-23T20:37:42Z <p><a href="http://mono-project.com/Gendarme" rel="nofollow">Gendarme</a> is totally open source and free. It's a subproject under mono. You can run the tools in three ways: wizard, console, NAnt. It will generate a html report which summarize all the violated rules. Worthy have a look. </p> http://stackoverflow.com/questions/378367/is-there-a-java-descriptor-like-thing-in-net 2 Is there a Java Descriptor like thing in .Net? Sun Liwen 2008-12-18T16:17:39Z 2008-12-23T20:26:57Z <p>I'm working on a static analysis tool for .NET assembly. In Java, there is a <a href="http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#1169" rel="nofollow">Descriptor</a> which can be used to represent method or field in a string with specified grammar. </p> <p>for field:</p> <p><code>double d[][][];</code></p> <p>will be</p> <p><code>[[[D</code></p> <p>It's useful especially when doing bytecode analysis. Coz it's easy to describe. If there a similar thing in .NET CLR? Or is there a better way to achieve this? Thanks!</p> http://stackoverflow.com/questions/378367/is-there-a-java-descriptor-like-thing-in-net/389996#389996 0 Answer by Sun Liwen for Is there a Java Descriptor like thing in .Net? Sun Liwen 2008-12-23T20:26:57Z 2008-12-23T20:26:57Z <p>Hey, thanks Vincent. I'm now using a class to represent "return type+parameters list" info instead of a descriptor in string. Thanks for the book you recommended. Yes, I use ildasm.exe and to read the internal of an assembly. And in my project I use Cecil to digg everything out. </p> http://stackoverflow.com/questions/387326/unit-testing-videos-or-pod-casts/388466#388466 0 Answer by Sun Liwen for Unit testing - videos or pod casts Sun Liwen 2008-12-23T09:18:01Z 2008-12-23T09:23:40Z <p><a href="http://blog.jpboodhoo.com" rel="nofollow">JP Boodhoo</a> is a great guy on unit testing and BDD. He made several videos on how to do unit testing on mvp patterns.</p> <p>I agree with Andrew. <a href="http://misko.hevery.com/" rel="nofollow">Misko Hevery</a> is quite thoughtful on testing. His project <a href="http://code.google.com/p/testability-explorer/" rel="nofollow">testability-explorer</a> is an innovation to measure your code as an evidence for further refactoring, based on some existing metrics.</p> http://stackoverflow.com/questions/386437/how-to-do-pdf-with-c/386463#386463 0 Answer by Sun Liwen for How to do PDF with C#? Sun Liwen 2008-12-22T15:08:05Z 2008-12-22T15:08:05Z <p>I use <a href="http://itextsharp.sourceforge.net/" rel="nofollow">iTextSharp</a> in projects years ago, It's very nice for normal needs, which include generate pdf on-the-fly, fill a form and flat the form to prevent form further modification, etc. It's a .Net port of famous java project iText. Have a try!</p> http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist/378419#378419 5 Answer by Sun Liwen for What CLR/.NET bytecode tools exist? Sun Liwen 2008-12-18T16:34:26Z 2008-12-18T16:34:26Z <p><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a> is a great tool like ASM. It's a subproject of Mono, and totally open source. It even provides <a href="http://codebetter.com/blogs/patricksmacchia/archive/2008/03/18/mono-cecil-vs-system-reflection.aspx" rel="nofollow">better feature</a> than System.Reflection. </p> http://stackoverflow.com/questions/378367/is-there-a-java-descriptor-like-thing-in-net/389996#389996 Comment by Sun Liwen on Is there a Java Descriptor like thing in .Net? Sun Liwen 2008-12-25T21:19:32Z 2008-12-25T21:19:32Z :) I use it. And I use Mono.Cecil in my code to read information from assemblies.