Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Every now and then (usually when I stumble upon one of Eric's or Jon's answers) I want to get a quick read of some section of the C# spec.
Problem is, the only online version I can find pertains to the C# for VS 2003 (i.e. C# v1.2 / .NET v1.1 ).
The current version of the spec on MSDN is only available as a .docx download which is less than optimal for a quick read and a complete misfit for linking to a certain part of it.
Is there an online version of the said document that I have failed to find?
I don't think it's available online, but it's worth noting that the spec is installed as part of visual studio -e.g.
[prog files]\Microsoft Visual Studio 11.0\VC#\Specifications\1033\CSharp Language Specification.doc
Since it's not officially available online, I've looked around for online document viewers.
The spec (for C# v5) can be browsed online here.
Note that it has 500+ pages, so it takes a few seconds to load...
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 10 months ago.
Improve this question
In Visual Studio 2015 (after installing the SDK preview), I created a 'diagnostic with code fix' project. The skeleton code is full of interesting types such as DiagnosticAnalyzer (under Microsoft.CodeAnalysis.Diagnostics) and CodeFixProvider (under Microsoft.CodeAnalysis.CodeFixes).
Where can I read the docs for these types? I couldn't find them on msdn. All I found was a different namespace with a confusingly similar name System.Diagnostics.CodeAnalysis .
Ideally msdn would have a full guide to writing a DiagnosticAnalyzer, as well as the usual reference documentation.
These are all Roslyn related, so the best place to look is the Roslyn documentation
It has samples, walkthroughs, FAQ, etc. Specifically here's a PDF file showing How To: Write a C# Diagnostic and Code Fix using a DiagnosticAnalyzer.
MSDN doesn't usually have information on technologies still in preview. I can only guess that until VS 2015 ships all the MSDN articles would be published (but we'll have to wait and see).
Roslyn is now moved to https://github.com/dotnet/roslyn
I think still the documentation is not that very great...!
my personal openion
This is an older question, but the docs have moved
Roslyn Wiki
A useful example: build a c# analyzer
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Last day in job I got pretty hard task. My task is to make new theme for our project (website). New theme should be rewritten to be fully responsive (actually it isn't). I have decided to use Bootstrap framework, because it is seems to be pretty nice, easy to learn and have good documentation with examples.
Today after reading most of documentation I tried to implement this. The only problem is that I tried to use it's main Less based version (which seems to have better support, cuz is main) to get better customizable themes (each theme can have it's own variables.less file) and I did not found good Less parser that work with .net MVC3.
Using JS to parse Bootstrap in not an option, because some of our customers have pretty old computers (Windows XP + IE8). I have tried to use dotless as a parser, but it had problems to handle Bootstrap, had problems with relative paths (problem with #include instruction) and was unable to load files from different directories (variables.less is in theme directory when rest of Bootstrap is shared).
If anyone can help me I will be very grateful, cuz today I spent ~8h and did totaly nothing.
You could try http://vswebessentials.com/
This nice Visual Studio plugin support LESS out of the box.
(http://vswebessentials.com/features/less)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking forward to build a web Based RDP client for one of my projects. Unfortunately, I could find only one Open Source project for this i.e. Guacamole.
I tried to go through the documentation, but It was written in some alien language. I am a C#/ASP.net/jQuery developer and the documentation is pretty confusing to me.
I did not find any install package for Windows in the documentation, neither I found any compiling methods for windows.
Is there any alternative to Guacamole for windows ? I'd prefer C# based back end over HTML5.
If not, please tell me about windows documentation of Guacamole.
Any help would be highly apppreciated..!!
Thank you..!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I found a great walk-through for Sync Framework here:
http://msdn.microsoft.com/en-us/library/bb726010.aspx
But, it is using Sync Framework version 1. I would like to use version 2 of the Sync Framework, as it appears to be much simpler to implement. But, I can't find a single tutorial on it. I have been looking for a while, and I am usually pretty good at finding obscure stuff when I need it. Can someone point me to a good walk-through for version 2 of Sync Framework, similar to the one I reference above?
Thanks for whatever you can provide.
the tutorial you referenced above should still apply to either 2.0 or 2.1 as the SqlCeClientSyncProvider/DbServerSyncProvider (commonly referred to as offline providers) hasnt really changed that much from v1.
if you're not synchronizing devices, you might want to look at the newer SqlCeSyncProvider/SqlSyncProvider: http://msdn.microsoft.com/en-us/library/bb902853(v=SQL.110).aspx
likewise, these tutorials are actually included in the documentation that get's installed when you install Sync Framework
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've seen quite a few examples of XMPP clients in .Net, and I've seen quite a few servers in various languages, but I'm looking for a .Net version (opensource if possible) of a XMPP server. It doesn't particularly have to be stable, or full of features, I just want something that works a little. Reliability is not really an issue.
Here are some that I found:
http://code.google.com/p/goodwarejabber/downloads/list (a bit old...)
EDIT: Note the comment below by the author of jabber-net, noting that jabber-net is not for writing servers:
http://code.google.com/p/jabber-net/wiki/FAQ_License
As an alternative, take a look at this SO question:
Jabber-net integration
or at these libraries:
http://code.google.com/p/jabber-net/
that would allow you to create your own (if that is an option for you).
You can download and take a look at trial version of MatriX library. It contains a sample on how to implement your own server.
http://www.ag-software.de/matrix-xmpp-sdk/download/
Download the MatriX for .NET version.
You could ask the support forum for help actually
http://forum.ag-software.de/
Coversant solution : SOAPBOX Server