<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>c++ Archives - IODocs</title>
	<atom:link href="https://www.iodocs.com/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.iodocs.com/tag/c/</link>
	<description>IODocs: Comprehensive How-To Guides, Software Tutorials, and More IODocs.com</description>
	<lastBuildDate>Mon, 07 Nov 2022 20:33:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.iodocs.com/wp-content/uploads/2019/01/cropped-logoIODOCSretina-32x32.avif</url>
	<title>c++ Archives - IODocs</title>
	<link>https://www.iodocs.com/tag/c/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Visual Studio 2010 not starting &#8211; Missing ATL100.DLL</title>
		<link>https://www.iodocs.com/visual-studio-2010-not-starting-missing-atl100-dll-2/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Mon, 25 Sep 2017 16:50:31 +0000</pubDate>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[error atl100-dll]]></category>
		<category><![CDATA[error Visual studio]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=1273</guid>

					<description><![CDATA[<p>Error: Visual Studio 2010 not starting &#8211; Missing ATL100.DLL "This application has failed to start because ATL100.DLL was not found. Re-installing the application may fix this problem" Answser: Option 1: You need to have the MS VC++ 2010 redistributable pack installed on the client machine. You should also link your program against the release version [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/visual-studio-2010-not-starting-missing-atl100-dll-2/">Visual Studio 2010 not starting &#8211; Missing ATL100.DLL</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Insert and Update in SQL Using User-Defined Table Type in C#</title>
		<link>https://www.iodocs.com/insert-update-sql-using-user-defined-table-type-csharp/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Sun, 30 Apr 2017 05:40:29 +0000</pubDate>
				<category><![CDATA[NET]]></category>
		<category><![CDATA[Azure SQL Database]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[MERGE SQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[User-Defined Table Type]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=845</guid>

					<description><![CDATA[<p>Insert and Update in SQL Using User-Defined Table Type in C#</p>
<p>The post <a href="https://www.iodocs.com/insert-update-sql-using-user-defined-table-type-csharp/">Insert and Update in SQL Using User-Defined Table Type in C#</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Best Practice Mapping a byte array to a structure in C#</title>
		<link>https://www.iodocs.com/best-practice-mapping-byte-array-structure-csharp/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Mon, 13 Mar 2017 19:19:21 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[byte array]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Mapping a byte array]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=766</guid>

					<description><![CDATA[<p>Some of the C# code I have been writing communicates via TCP/IP with legacy C++ applications. Some codes use a raw packet format where C/C++ structures are passed back and forward. Example of what the legacy code could look like: #pragma pack(1) typedef struct { int id; char[50] text; } MESSAGE; // Send a message MESSAGE [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/best-practice-mapping-byte-array-structure-csharp/">Best Practice Mapping a byte array to a structure in C#</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Getting all file names from a folder using C# [resolve]</title>
		<link>https://www.iodocs.com/getting-file-names-folder-using-csharp/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Mon, 13 Feb 2017 18:28:52 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[recursively]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=733</guid>

					<description><![CDATA[<p>Answers This step-by-step article shows how to recursively search subdirectories for files in a C# Windows Forms application. A search string is specified so that you can find files. Directory recursion is a common IO task. The FileSystemObject makes this job easy for Component Object Model applications. Now, these activities have become even easier in [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/getting-file-names-folder-using-csharp/">Getting all file names from a folder using C# [resolve]</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>[C#] Create New Thread Sharp</title>
		<link>https://www.iodocs.com/csharp-thread-sharp/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Thu, 19 Jan 2017 12:24:53 +0000</pubDate>
				<category><![CDATA[NET]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Threads]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=631</guid>

					<description><![CDATA[<p>Create New Thread C# How to create a new thread in NET. First, create an object ThreadStart delegate. This delegate points to a method that executed by the new thread. Now your need to pass this delegate as a parameter when creating a new Thread instance, You should also call the Thread.Start method to run [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/csharp-thread-sharp/">[C#] Create New Thread Sharp</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
