July 13th, 2016
0 reactions

Bing Developer Assistant, now with C++ support

Marian Luparu
Group Product Mgr

Head over today to the Visual Studio blog for some exciting announcements coming from our friends in the Bing team: Bing Developer Assistant just released a new version that brings C++ support

From the post:

With the addition of 43 Million C++ code samples, our total corpus is now of 64 Million code samples. In addition to MSDN, stackoverflow and GitHub we have sourced code samples from specialist C++ domains like cppreference.com and cplusplus.com which gives developers a strong base of options to choose from. Now you have access to thousands of code samples for CRT (C runtime libraries), STL (standard template library) and various other open source C++ libraries like Boost, Direct3D, OpenCV etc. from within Visual Studio.

Curious already? Get yourself more familiar with how the extension works, go download it today and share your thoughts

Category
C++

Author

Marian Luparu
Group Product Mgr

Working on C++ experience for @visualstudio, @code, @visualc compiler & libs, #vcpkg

1 comment

Discussion is closed. Login to edit/delete existing comments.

  • Uwe Baemayr

    What happened to the Developer Assistant? All links to the product are broken, including the one above. Just wasted 20 minutes trying to track it down.

    How about a statement that it’s been withdrawn if that’s what happened.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }