Microsoft Collections for .NET [closed] - c#

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
.NET comes with some built in collections (stack, queue, dictionary, list etc.) but others common collections, like priority queues, are missing. There are many third party collection libraries on NuGet but I was wondering if there is an official Microsoft one (like the BCL immutable collections now called System.Collections.Immutable) library with things like (mutable) priorities queues?
EDIT: Important clarification (comment by #rmunn):
This question is not asking to recommend a library for X, it is asking
a factual question, "Are there any official Microsoft libraries for
X?"

.NET 6+: .NET 6 adds a System.Collections.Generic.PriorityQueue<TElement,TPriority> class. And FWIW it is open-source and implemented in c#.
Earlier .NET Core versions and .NET Framework: Microsoft has written (and shared online) 2 internal PriorityQueue classes within the .NET Framework. You could use their code.
See also: Priority queue in .Net

I'm not sure if you already looked at it, but the System.Collections.Specializednamespace contains quite some hidden gems.
Also the System.Linq namespace can be worth a look.

Related

Can anyone point me to a good tutorial for Microsoft Sync Framework v2? [closed]

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

Opensource .Net Jabber/XMPP server? [closed]

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

Generating XMI or graphic UML diagrams (not code documentation) in C#.NET [duplicate]

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'm looking for a free .NET (C#) library which i can use in my program and simply draw UML diagrams (especially class diagram). I tried to used Netron Diagramming Library but it is kind of tricky.
Have you looked at EasyDiagram?
Depending on your requirements you may be able to use the http://yuml.me/ REST api.
http://sourceforge.net/projects/numl/
From the home page:
Library for manipulating UML 2.0 and MOF 2.0 models, for .NET, Mono,
and DotGNU. Provides serialization to/from XMI 2.1.

Free UML drawing library for .NET [closed]

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'm looking for a free .NET (C#) library which i can use in my program and simply draw UML diagrams (especially class diagram). I tried to used Netron Diagramming Library but it is kind of tricky.
Have you looked at EasyDiagram?
Depending on your requirements you may be able to use the http://yuml.me/ REST api.
http://sourceforge.net/projects/numl/
From the home page:
Library for manipulating UML 2.0 and MOF 2.0 models, for .NET, Mono,
and DotGNU. Provides serialization to/from XMI 2.1.

SAML with .NET 2.0 [closed]

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 3 years ago.
Improve this question
I've been given the task of working with SAML to implement an SSO solution between my company and a third party provider. My only issue is that I can't seem to find how to implement SAML in C# 2.0. I've been able to find a few examples for .Net 3.0 and 3.5, but none for 2.0 (and the classes they use don't appear to be available in 2.0). Does anyone know of any oline examples using SAML and C# 2.0?
I'm sorry to be this late but I had the same problem you were having. But I've found an excellent solution in .NET 2.0 namely OIOSAML.NET (currently v. 1.4).
http://www.softwareborsen.dk/projekter/softwarecenter/brugerstyring/oiosaml.net/releases/1.4/oiosaml-dot-net-v1-4.zip
Unless you can find a third party implementation, you are going to have to upgrade beyond v2.0. Probobly not what you want to hear, sorry...

Categories

Resources