XML intellisense in C #, as in VB.Net?

Is it possible to include XML intellisense in a C # class, like in a VB editor? As in the requirements of this article:

http://msdn.microsoft.com/en-us/library/bb531325.aspx

I would like not to use xsd.exe to create a class from XML.

+3
source share
2 answers

No, because C # does not support XML literals such as VB in the first place - in fact, there is no language that IntelliSense pops up unless it finds that you called Elementson XElement, etc.

+5
source

Currently, the function is not just VB.Net, commonly called XML literals.

+1
source

Source: https://habr.com/ru/post/1760116/


All Articles