<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4460839443066887402</id><updated>2024-10-07T10:57:09.635+05:30</updated><category term="C#"/><category term="What"/><category term=".Net"/><category term="Framework"/><category term="How"/><category term="OOP"/><category term="Threading"/><title type='text'>Threaded Minds ~ C#, .NET framework, OOPS concepts, Database concepts Q and A</title><subtitle type='html'>C#, C# Examples,.NET, .NET Examples, .NET Framework, OOPS Concepts, OOPS examples, WinForms, WPF, WCF, WebServices, LINQ, MongoDB, SQL Server, Databases, Questions, Answers, Problem Solution</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-6802809273671994161</id><published>2015-10-28T22:03:00.000+05:30</published><updated>2015-10-28T22:52:52.603+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="How"/><category scheme="http://www.blogger.com/atom/ns#" term="Threading"/><title type='text'>How to create threads in C# ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Threads can be created like other objects in C# using the &amp;#39;new&amp;#39; keyword.&lt;br&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;Thread th = new Thread(Write);&lt;/pre&gt;
&lt;b&gt;Thread class is available in System.Threading namespace.&lt;/b&gt;&lt;br&gt;
We can start a thread using Start() method like.&lt;br&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;th.Start();&lt;/pre&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/10/how-to-create-threads-in-csharp.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/6802809273671994161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/10/how-to-create-threads-in-csharp.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/6802809273671994161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/6802809273671994161'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/10/how-to-create-threads-in-csharp.html' title='How to create threads in C# ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUAOSSz-ltJUX0LXkpUcrBWwYU3B5Tc7IyJcW42pXbNtOQj9G-wJLonMhEzeGTEWTy48OdhG0k_FKo3YLaTZjmeuuP642eFa7P1hFmsraX_LD5vdevgWI0a69RmjEht5q3rE3FrmYqOw0/s72-c/output.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-808052798853321322</id><published>2015-10-11T20:31:00.002+05:30</published><updated>2015-10-11T21:30:27.957+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="Threading"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What are threads (multi-threading) in C# ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;font-size: 11pt; margin: 0in;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Threads are the
independent units of execution and can run simultaneously with other threads.
Threads helps in achieving parallel execution in C#, which is also called
multithreading. &lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-size: 11pt; margin: 0in;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;A C# program
typically starts with a single thread create automatically by CLR (Common
Language Runtime) and operating system. If needed, additional threads has to be
created manually through code.&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/10/threads-mutithreading-in-csharp.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/808052798853321322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/10/threads-mutithreading-in-csharp.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/808052798853321322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/808052798853321322'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/10/threads-mutithreading-in-csharp.html' title='What are threads (multi-threading) in C# ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSNn_LNDA1u_W_kmi8FpmvSdVZBSUF1NrS7FOR67U84AsHLWUV28Z8uClPStR-jNH14Ay1GXtNcpCBGZk8TNHChrDSvGi0mHdpGIoWcStove_VvvB0yhOllEjEkzxELNF1_NOjhhnzuJg/s72-c/threads_result.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-1184761545020417036</id><published>2015-10-10T11:35:00.000+05:30</published><updated>2015-10-10T11:43:11.787+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term=".Net"/><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="How"/><title type='text'>How to measure execution speed (time) in Milliseconds, Microseconds and Nanoseconds using Stopwatch in C# ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
There are situations in the programming world where developers need to measure the execution time of the code.&lt;br&gt;
.NET framework provides Stopwatch class to measure elapsed time for an interval which has two properties ElapsedMilliseconds and ElapsedTicks.&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/10/measure-time-milliseconds-micorseconds-nanoseconds-csharp.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/1184761545020417036/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/10/measure-time-milliseconds-micorseconds-nanoseconds-csharp.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/1184761545020417036'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/1184761545020417036'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/10/measure-time-milliseconds-micorseconds-nanoseconds-csharp.html' title='How to measure execution speed (time) in Milliseconds, Microseconds and Nanoseconds using Stopwatch in C# ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-5492458429438605028</id><published>2015-10-04T21:51:00.002+05:30</published><updated>2015-10-04T21:52:14.024+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term=".Net"/><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What is difference between DateTime.Now and DateTime.UtcNow ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;b&gt;DateTime.Now&lt;/b&gt; is a built in property provided by .NET framework which returns the current time of the machine which is executing the code.&lt;b&gt;&lt;/b&gt;&lt;br&gt;
This property internally converts the DateTime.UtcNow provided value to the date and time format of the machine executing the code. Hence this property has an overhead of execution, so must be used carefully.&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/10/difference-between-DateTimeNow-and-DateTimeUtcNow.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/5492458429438605028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/10/difference-between-DateTimeNow-and-DateTimeUtcNow.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/5492458429438605028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/5492458429438605028'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/10/difference-between-DateTimeNow-and-DateTimeUtcNow.html' title='What is difference between DateTime.Now and DateTime.UtcNow ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlJW8hbf38Xa_U1JCcgoCvaM1N0ssaAmzAi7hkL5eLsXCmbBCwj6jJBgo5qRl2C8CFBzmqH34JNmHI9INgStuGiAO4XyBeUg1gXMkaj_HL5ruhzkI_NFS0SAY91DHQSFOmOCdkmsNhNXkk/s72-c/DateTimeComparison.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-7171971529564487529</id><published>2015-09-20T14:40:00.000+05:30</published><updated>2015-10-02T17:05:33.138+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term=".Net"/><category scheme="http://www.blogger.com/atom/ns#" term="Framework"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What is IL (Intermediate Language) in .Net framework ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;margin: 0in;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). All .NET source code is compiled to IL. IL is then converted to machine code at the point where the software is installed, or at run-time by a Just-In-Time (JIT) compiler.&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/09/what-is-il-intermediate-language-in-net.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/7171971529564487529/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/09/what-is-il-intermediate-language-in-net.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/7171971529564487529'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/7171971529564487529'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/09/what-is-il-intermediate-language-in-net.html' title='What is IL (Intermediate Language) in .Net framework ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCHN9v60FJnibQuyoBwTqLIdwwEGsb757e9OY9SwzgnmEClAike-O0IDAEX2YCyFu0paNTzwZPtKb34tn-HzWLd6ZJ9SE9b284xc5AIzVNzO2nGWcpND7pB5TeCD7FgTATRa77Qjn-bTCv/s72-c/msil-1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-1327458980297713705</id><published>2015-06-03T22:33:00.000+05:30</published><updated>2015-09-27T23:00:43.446+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term=".Net"/><category scheme="http://www.blogger.com/atom/ns#" term="Framework"/><title type='text'>History of .Net framework</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;font-size: 11pt; margin: 0in;&quot;&gt;
&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;.NET Framework Version 1.0&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: inherit; font-size: 11pt;&quot;&gt; &lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-size: 11pt; margin: 0in 0in 0in 0.375in;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;The first version of the &lt;a href=&quot;http://www.codeobjects.in/2015/06/introduction-to-dotnet-framework.html&quot; target=&quot;_blank&quot;&gt;.NET Framework&lt;/a&gt; was released on 13 February 2002 for Windows 98, ME, NT 4.0, 2000, and XP.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-size: 11pt; margin: 0in;&quot;&gt;
&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;.NET Framework Version 1.1&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: inherit; font-size: 11pt;&quot;&gt; &lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-size: 11pt; margin: 0in 0in 0in 0.375in;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Version 1.1 is the first major &lt;a href=&quot;http://www.codeobjects.in/2015/06/introduction-to-dotnet-framework.html&quot; target=&quot;_blank&quot;&gt;.NET Framework&lt;/a&gt; upgrade. It is available on its own as a redistributable package or in a software development kit, and was published on 3 April 2003.&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/06/history-of-net-framework.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/1327458980297713705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/06/history-of-net-framework.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/1327458980297713705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/1327458980297713705'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/06/history-of-net-framework.html' title='History of .Net framework'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-1936863409419342600</id><published>2015-06-03T07:36:00.000+05:30</published><updated>2015-09-27T23:01:04.893+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term=".Net"/><category scheme="http://www.blogger.com/atom/ns#" term="Framework"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What is .Net Framework ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;margin-bottom: 12pt; margin-top: 0pt;&quot;&gt;
&lt;span style=&quot;font-family: inherit; font-size: 15px;&quot;&gt;.NET Framework is a complete environment that allows developers to develop, run, and deploy the following applications:&lt;/span&gt;&lt;br&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-family: inherit; font-size: 15px;&quot;&gt;Console applications&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: inherit; font-size: 15px;&quot;&gt;Windows Forms applications&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: inherit; font-size: 15px;&quot;&gt;Windows Presentation Foundation (WPF) applications&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/06/what-is-net-framework.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/1936863409419342600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/06/what-is-net-framework.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/1936863409419342600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/1936863409419342600'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/06/what-is-net-framework.html' title='What is .Net Framework ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6lMdnRdlFww41ec-HA4FtCfn9mpW2qbuMHPCbuWdsSjcJE4ggBNN5Jaopz3t70q-crvfea8eGDccyQfPHr0MOXBbVXq9NfrrEzv5Dcqxa-FRETf8doTnUl7hVPPCh7HPocRVGmSNp40TS/s72-c/.net_framework.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-3764106689476768722</id><published>2015-05-03T16:34:00.000+05:30</published><updated>2015-10-02T17:06:11.444+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="OOP"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What are Classes in C# ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Classes are the blueprints for objects. Everything in &lt;a href=&quot;http://www.codeobjects.in/2015/05/introduction-to-csharp.html&quot;&gt;C#&lt;/a&gt; is based upon classes.&lt;br&gt;
A class normally consists of Methods, Fields and Properties. Classes are declared by using the keyword &amp;quot;class&amp;quot; followed by the class name and a set of class members surrounded by curly braces.&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/05/what-are-classes-in-c.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/3764106689476768722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/05/what-are-classes-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/3764106689476768722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/3764106689476768722'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/05/what-are-classes-in-c.html' title='What are Classes in C# ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJKbm8gRkGSuOCjHE5pK7C-WRdfjRUaEH7_SGD74Rr6eDF1eKTNrNe-rV24HVO2NdjJUxExogi-3gUMqvjylIP67az9L68GA3Kvw0ww258Zkv1EzcG62RX7CffLRTvD4QwdYEqju95nUVX/s72-c/output.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-8192217550755687617</id><published>2015-05-03T15:41:00.000+05:30</published><updated>2015-10-02T17:06:36.723+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="OOP"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What is Object-Oriented Programming ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Object-oriented programming (OOP) is a programming language model organized around &amp;quot;OBJECTS&amp;quot; instead of &amp;quot;actions&amp;quot; and data rather than logic. In procedural programming language, a program has been viewed as a logical procedure that takes input data, processes it, and produces output data.&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/05/what-is-object-oriented-programming.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/8192217550755687617/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/05/what-is-object-oriented-programming.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/8192217550755687617'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/8192217550755687617'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/05/what-is-object-oriented-programming.html' title='What is Object-Oriented Programming ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4460839443066887402.post-7067767610717906870</id><published>2015-05-02T21:11:00.000+05:30</published><updated>2015-10-02T17:06:51.175+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term=".Net"/><category scheme="http://www.blogger.com/atom/ns#" term="C#"/><category scheme="http://www.blogger.com/atom/ns#" term="What"/><title type='text'>What is C# programming language ?</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
C# (pronounced as &amp;quot;see sharp&amp;quot;) is an &lt;a href=&quot;http://www.codeobjects.in/2015/05/object-oriented-programming.html&quot;&gt;object-oriented programming (OOP)&lt;/a&gt; language created by Microsoft team which is led by Anders Hejlsberg. It is part of .Net family from Microsoft. C# is a language derived from C and C++, including features which made the language easy to use.&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://threadedminds.blogspot.com/2015/05/introduction-to-c.html#more&quot;&gt;Continue reading »»&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://threadedminds.blogspot.com/feeds/7067767610717906870/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://threadedminds.blogspot.com/2015/05/introduction-to-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/7067767610717906870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4460839443066887402/posts/default/7067767610717906870'/><link rel='alternate' type='text/html' href='http://threadedminds.blogspot.com/2015/05/introduction-to-c.html' title='What is C# programming language ?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/03813791187966115613</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>