Skip to main content

Announcing Microsoft Q&A for .NET

Have you ever been working on some code and ran into an issue and needed to ask someone for help? Maybe you are looking for assistance on how to start your next app or perhaps you are seeking some architecture guidance? What if there were one place where you could go to get your technical questions answered by experts from Microsoft and the community? Well there is now with the launch of Microsoft Q&A for .NET!

Microsoft Q&A home page for .NET

Microsoft Q&A is the home for technical questions and answers about products from Microsoft. If you are looking for help on any Microsoft product you are sure to find it on Microsoft Q&A. Join the community of growing experts who are here to help developers get the help and answers they need on their projects. When you head to Microsoft Q&A for .NET you will find a wide range of .NET topics including runtime, app & web development, languages, data, and more. Browse questions from the community, ask your own, and help out others!

Microsoft Q&A page for Blazor with a few questions, follow button, and ability to ask a question

Ask a question, follow the topic, or pick out a question that you know the answer to. Your Microsoft Q&A profile is linked to your Microsoft Learn account and you can get gain reputation points by being active.

Reputation pionts on your account page

As you can see I just started my journey on Microsoft Q&A, and I hope that you will join me!

What about existing forums?

There are many forums around .NET topics including MSDN, ASP.NET, IIS.NET, and Xamarin. It has been amazing to see the forums thrive over the years and we we are always looking for ways to engage deeper with the community. Microsoft Q&A brings together not only all topics on .NET into a single platform, but for all Microsoft products that developers use. Over time each of the forums will migrate fully to the Microsoft Q&A platform so we encourage you to start posting new questions on Q&A today. Look for notification on each forum for more information when the time comes for migration.

The post Announcing Microsoft Q&A for .NET appeared first on .NET Blog.



source https://devblogs.microsoft.com/dotnet/announcing-microsoft-q-and-a-for-dotnet/

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee