C ++ read / write XML without CLR

I know this is a very stupid question and I am very new to C ++.

I am developing Starcraft AI, this is a dll file. I am trying to use XML to collect some data for a bot, however whenever I create a dll with the / clr option. The bot is not loading properly. So my question is the CLR and there is a way to read / write XML without using the / clr build option.

Many thanks.

+3
source share
2 answers

The flag /clrmeans that you create it as a C ++ / CLI application, which means that it will be managed code (using the .Net framework, etc.). See here for more details .

, , , - MSXml Xerces XML library XML , - .Net. , , XML, , ++.

+1

Microsoft, COM, MSXML. libxml2 ( Windows ).

+1

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


All Articles