<?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# &#8211; NetKalon</title>
	<atom:link href="https://netkalon.com/blog/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>https://netkalon.com</link>
	<description> Explore tech world happening around you</description>
	<lastBuildDate>Sun, 30 Jul 2017 16:21:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://netkalon.com/wp-content/uploads/2022/09/cropped-NK1-32x32.png</url>
	<title>C# &#8211; NetKalon</title>
	<link>https://netkalon.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Convert a Table Column Into a C# Model Class</title>
		<link>https://netkalon.com/blog/how-to-convert-a-table-column-into-a-c-model-class/</link>
					<comments>https://netkalon.com/blog/how-to-convert-a-table-column-into-a-c-model-class/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Sun, 30 Jul 2017 16:21:49 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[MS-SQL]]></category>
		<guid isPermaLink="false">https://dotnetspices.wordpress.com/?p=756</guid>

					<description><![CDATA[In this blog, I will demonstrate how to convert a table column into a C# model class using stored procedures. This is a very useful tip for any C# programmer. SQL Code Create tables and columns as you need, like given below: CREATE TABLE [dbo].[EmployeeMaster](   [RowId] [bigint] NULL,   [EmpFirstName] [varchar](50) NULL,   [EmpLastName] [&#8230;]]]></description>
		
					<wfw:commentRss>https://netkalon.com/blog/how-to-convert-a-table-column-into-a-c-model-class/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert Table Data To List Using Reflection</title>
		<link>https://netkalon.com/blog/convert-table-data-to-list-using-reflection/</link>
					<comments>https://netkalon.com/blog/convert-table-data-to-list-using-reflection/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Mon, 12 Jun 2017 06:07:34 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[ADO.NET]]></category>
		<guid isPermaLink="false">https://dotnetspices.wordpress.com/?p=439</guid>

					<description><![CDATA[In this blog, learn how to convert table data into list data using Reflection and LINQ. You can use the data passing from the server side to the client side. Reflection You can use Reflection to dynamically create an instance of a type, bind the type to an existing object, or get the type from [&#8230;]]]></description>
		
					<wfw:commentRss>https://netkalon.com/blog/convert-table-data-to-list-using-reflection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Learn WPF Using Google Place API</title>
		<link>https://netkalon.com/blog/learn-wpf-using-google-place-api/</link>
					<comments>https://netkalon.com/blog/learn-wpf-using-google-place-api/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Tue, 06 Jun 2017 01:51:11 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Google Place API]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[WPF]]></category>
		<guid isPermaLink="false">https://dotnetspices.wordpress.com/?p=431</guid>

					<description><![CDATA[Introduction In this article, we will learn WPF using Google Place API with the WPF control web browser in Visual Studio 2015. In this article, we are going to: Create a WPF Application. Using Google Place API. Configure the API. Create a WPF Application Open Visual Studio 2015 Select the File menu &#62;New &#62; Click [&#8230;]]]></description>
		
					<wfw:commentRss>https://netkalon.com/blog/learn-wpf-using-google-place-api/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert Table Column Into C# Model Class</title>
		<link>https://netkalon.com/blog/convert-table-column-into-c-model-class/</link>
					<comments>https://netkalon.com/blog/convert-table-column-into-c-model-class/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Tue, 09 May 2017 01:01:50 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[MS-SQL]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://dotnetspices.wordpress.com/?p=495</guid>

					<description><![CDATA[In this blog, I will demonstrate how to convert a table column into a C# model class, using stored procedure. This is a very useful phenomenon for most of the C# programmers. SQL Code Create table and column as you need, like given below. CREATE TABLE [dbo].[EmployeeMaster](     [RowId] [bigint] NULL,     [EmpFirstName] [varchar](50) NULL,     [EmpLastName] [varchar](50) NULL,     [PhoneNo] [bigint] NULL,     [City] [bigint] NULL,     [Address] [varchar](500) NULL,     [DateOfBirth] [datetime] NULL,     [Gender] [int] NULL,     [MaritalStatus] [bit] NULL,     [EmpStatus] [bit] NULL [&#8230;]]]></description>
		
					<wfw:commentRss>https://netkalon.com/blog/convert-table-column-into-c-model-class/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Types of Namespace in C#</title>
		<link>https://netkalon.com/blog/types-of-namespace-in-c/</link>
					<comments>https://netkalon.com/blog/types-of-namespace-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Fri, 30 Dec 2016 05:35:46 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<guid isPermaLink="false">https://dotnetspices.wordpress.com/?p=134</guid>

					<description><![CDATA[The namespaces are used in C# that contains collection of classes. There four types of namespaces in C#. Directive Station Alias Nested Directive Namespace: The directive namespace that is from link library and direct as link. Eg: using system.IO using System; Console.WriteLine("Hai"); Console.WriteLine("Hello C# Corner!"); Station Namespace: The namespace that created automatically for project. Eg: Console app create. using System.Xml; [&#8230;]]]></description>
		
					<wfw:commentRss>https://netkalon.com/blog/types-of-namespace-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Apply ComboBox Selected Color To The Form’s Background Color In WPF</title>
		<link>https://netkalon.com/blog/apply-combobox-selected-color-to-the-forms-background-color-in-wpf/</link>
					<comments>https://netkalon.com/blog/apply-combobox-selected-color-to-the-forms-background-color-in-wpf/#respond</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Sat, 10 Dec 2016 06:01:26 +0000</pubDate>
				<category><![CDATA[WPF]]></category>
		<category><![CDATA[C#]]></category>
		<guid isPermaLink="false">https://dotnetspices.wordpress.com/?p=159</guid>

					<description><![CDATA[Introduction:            This article is used for binding system color properties in a combo box, even the same scenario will work with any other control. Combo box selected color applies to the form’s background color. Background Open visual studio 2015 and create a new project from WPF. Project opened like as [&#8230;]]]></description>
		
					<wfw:commentRss>https://netkalon.com/blog/apply-combobox-selected-color-to-the-forms-background-color-in-wpf/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
