Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
My program need to parse css files into an in-memory object format. Any advice on how this should be done ?
ExCSS (supports CSS2.1 and CSS3) on GitHub: https://github.com/TylerBrinks/ExCSS.
Which is a newer version of the code project article: http://www.codeproject.com/KB/recipes/CSSParser.aspx
And a slightly slower search turns up the blog post "CSS parser class in .NET" which embeds this gist on GitHub (in case the blog ever dies).
There is a CSS grammar file for GoldParser:
http://goldparser.org/grammars/files/css.zip
GoldParser is easy to include in a C# project, and generates an real LALR parser - not some regex hack.
Have you tried the one featured in JsonFx? It's written in C#, parses CSS3 syntax and is distributed under a MIT style license.
I wrote one, using the grammar specified in the CSS 2.1 spec. I have also released it now: for details, see http://www.modeltext.com/css/
Here you can find another one especially for C# with sample source.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have an assembly WebMatrix.WebData.dll and
I want to look inside the body of one of the functions and to see how it is implemented
The function name is: WebSecurity.CreateUserAndAccount(model.UserName, model.Password);
It is in namespace WebMatrix.WebData
I am just curious to see how everything is working down there.
Is it possible to extract the body to a user-friendly code?
There is no need to go downloading decompilers for anything in the ASP.NET web stack, it's open source! You can read it all through in it's fully commented and unobfuscated glory. Here is a link to the exact line of the method you're after:
https://github.com/ASP-NET-MVC/aspnetwebstack/blob/master/src/WebMatrix.WebData/WebSecurity.cs#L318
There are plenty of decompilers out there.
http://ilspy.net/ - ILSpy (Free)
http://www.jetbrains.com/decompiler/ - DotPeek (Free)
http://www.red-gate.com/products/dotnet-development/reflector/ - Reflector (Trial/Paid)
You can use ILSpy to decompile a library into source code.
Download it here: ILSpy
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Please are there any tools available that will parse my source code to enumerate all class and function dependency for my project (C, C#, C++ or Java) and save it in doc, XML or any other format?
Thank you.
Use reflector:
http://www.red-gate.com/products/reflector/
With this add-in:
http://code.google.com/p/xmi4dotnet/
For .NET, check this out
http://www.ndepend.com/
Understand will handle all those languages. It's not free but a very good tool. Not sure about generating XML, but it'll do a variety of reports. It also supports perl plugins, so you could probably generate whichever format you need for the reports.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Hi guys an easy one here,
What are some of the better converts out there which work well and what are the drawbacks of doing a conversions if any? Loss of quality/res/anything?
see here Convert PDF file to images using C#
Only drawback, if it is one, is that you need to install ghostscript.
Also, once in a while gs can't parse a file that adobe can.
There are no open source .net libraries that can do that. Either use ghostscript or imagick (.net wrapper) for the conversion. Ghostscript gives you better quality than imagick.
I believe that abcpdf can do that, but it's a commerical component.
There are many products I found that can do this. Some have a cost while some are free.
I used Black Ice http://www.blackice.com/Printer%20Drivers/Tiff%20Printer%20Drivers.htm. This is afordable at about $40. I didn't buy this one though.
I ended up using a free one called MyMorph.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
im seaching some good quality open source project in .net, according this topic
https://stackoverflow.com/questions/143088/open-source-c-projects-that-have-high-code-quality
i found intresting open source projects like "Sharp develop", its great because i can build & run it without problem, but i would like learn how it was developed in deep, learning from only source code without well documented classes, pattern used in project, techniques etc is difficult task. Can anyone provide information about project which i can understand easier.
thanks for suggestions.
nopCommerce - open source shopping cart.
http://www.nopcommerce.com/default.aspx
I recommend iTextSharp (.NET Port of iText, written in C#), a open-source library used for PDF generation on-the-fly. I've personally worked on it..used the DLL version for my project, but was checking out the code to see how it was written..
http://sourceforge.net/projects/itextsharp/files/
Maybe Noda Time is an option, John Skeet's .Net port of Joda-Time. The User Guide looks good and...I mean, he's known for good quality code ;)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Are there any good alternatives for Lucene .NET to use in a ASP.NET website?
I want to index XML-, TXT-, PDF- and DOC-files.
Thanks!
I couldn't say if this is better than Lucene.NET but you might want to look at https://searcharoo.codeplex.com/.
This is late, but i think that Lucene.Net is now compatible with Medium Trust
see about midway in this post :
http://blogs.taiga.nl/martijn/2009/06/24/new-adventures-under-medium-trust/
Update
Adding this note for anyone else who finds this :
The final resolution of the issue is noted below. Short version : Lucene.Net officially runs under Medium Trust.
http://issues.apache.org/jira/browse/LUCENENET-169
why not try solr?
http://lucene.apache.org/solr/
Searcharoo has been mentioned. https://searcharoo.codeplex.com/
It's fully C#/.NET (edit - original domain no longer accessible. The codeplex link is to the searcharoo source code and the project has not had any update since 2012).
Also from this link:
Whoosh (purely Python, no C#/.NET bindings)
zettair (C; no C#/.NET bindings)
indri (bindings for Java, PHP, C++, but not C#/.NET)
Sphinx (for MySQL or PostgreSQL, or XML pipes)
Xapian (C++; has C#/.NET bindings)