<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>C-Sharp(#) Unleashed!!</title>
	<atom:link href="http://karthikeyancsharp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://karthikeyancsharp.wordpress.com</link>
	<description>Innovating Better Programming</description>
	<lastBuildDate>Wed, 25 Nov 2009 16:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='karthikeyancsharp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1f4ea9b17446612e4d1a7c4283e131a2?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>C-Sharp(#) Unleashed!!</title>
		<link>http://karthikeyancsharp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://karthikeyancsharp.wordpress.com/osd.xml" title="C-Sharp(#) Unleashed!!" />
	<atom:link rel='hub' href='http://karthikeyancsharp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>C#-Arrays:-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/29/c-arrays/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/29/c-arrays/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 16:17:57 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[C# Arrays]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=185</guid>
		<description><![CDATA[Now we gonna get into deep look at csharp arrays. Arrays works as a collection of elements &#38; it is used to gather items to form a group  which is used to perform some operations like Binary Search,Sorting etc, Arrays are declared like variables ,with a set of brackets [] after the datatype, like this, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=185&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now we gonna get into deep look at csharp arrays.</p>
<p>Arrays works as a collection of elements &amp; it is used to gather items to form a group  which is used to perform some operations like Binary Search,Sorting etc,</p>
<p>Arrays are declared like variables ,with a set of brackets [] after the datatype, like this,</p>
<p><span style="color:#ff0000;">//this is first way to declare an array. </span></p>
<p><span style="color:#0000ff;"> <strong>int[] arrayinteger;</strong></span></p>
<p><span style="color:#0000ff;"><strong> arrayinteger = new int[5];</strong></span></p>
<p><span style="color:#ff0000;"><strong>//Next way to declare arrays.</strong></span></p>
<p><span style="color:#ff0000;"><strong> <span style="color:#0000ff;"> int[] arrayinteger = new int[5];</span></strong></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><strong>The int[5] means that the array is a int datatype with it can hold 5 values.</strong></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><strong> Now take look at the picture.<br />
</strong></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><strong><br />
</strong></span></span></p>
<p><span style="color:#0000ff;"><strong><br />
</strong></span></p>
<div id="attachment_187" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-187" title="ARRAY" src="http://karthikeyancsharp.files.wordpress.com/2009/06/array.png?w=600" alt="Array Declaration"   /><p class="wp-caption-text">Array Declaration</p></div>
<p>We can also initialise values in the array itself</p>
<p>consider this example:=</p>
<p><span style="color:#ff0000;"><strong> int[] arrayex = new int[5]{1,2,3,4,5};</strong></span></p>
<p><strong> foreach(int s in arrayex)</strong></p>
<p><strong> Console.WriteLine(s.Tostring());</strong></p>
<p><strong> Or</strong></p>
<p><span style="color:#ff0000;"><strong>int[] arrayex = new int[5]{1,2,3,4,5};</strong></span></p>
<p><span style="color:#ff0000;"><strong>For(int i = 0; i  &lt; arrayex.Length; i ++)</strong></span></p>
<p><span style="color:#ff0000;"><strong> {</strong></span></p>
<p><strong> Console.WriteLine(arrayex[i].tostring());</strong></p>
<p><span style="color:#ff0000;"><strong> }</strong></span></p>
<p><span style="color:#16e87f;"><br />
</span></p>
<p><span style="color:#ff0000;"><strong><span style="color:#ff6600;">I feel this is a starting of arrays introduction , hereafter we will discuss to perform some of the operations of arrays like sorting,Properties,binding arrays with classes and array link list etc.</span><br />
</strong></span></p>
<p><strong><br />
</strong></p>
<br />Posted in C# Arrays  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=185&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/29/c-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>

		<media:content url="http://karthikeyancsharp.files.wordpress.com/2009/06/array.png" medium="image">
			<media:title type="html">ARRAY</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Features:-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/21/c-features/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/21/c-features/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 10:54:12 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[C# Features:-]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=169</guid>
		<description><![CDATA[The article focuses on the new ways of programming ,c# offers and how it possesses to improve its two neighbors c++ and java.i have tried to write a comparative study of features of c# with java ,c++. 1.C# And JAVA:- Compiles into machine-independent language-independent code which runs in a managed execution enviornment. Garbage Collection coupled [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=169&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The article focuses on the new ways of programming ,c# offers and how it possesses to improve its two neighbors c++ and java.i have tried to write a comparative study of features of c# with java ,c++.</p>
<p><strong>1.</strong><strong>C# And JAVA:-</strong></p>
<ul>
<li>Compiles into machine-independent language-independent code which runs in a managed execution enviornment.<a href="http://genamics.com/developer/csharp_comparative_part12"><br />
</a></li>
<li>Garbage Collection coupled with the elimination of pointers (in C# restricted use is permitted within code marked unsafe)</li>
<li>Powerful reflection capabilities</li>
<li>No header files, all code scoped to packages or assemblies, no problems declaring one class before another with circular dependencies</li>
<li>Classes all descend from object and must be allocated on the heap with new keyword</li>
<li>Thread support by putting a lock on objects when entering code marked as locked/synchronized</li>
<li>Interfaces, with multiple-inheritance of interfaces, single inheritance of implementations</li>
<li>Inner classes</li>
<li>No concept of inheriting a class with a specified access level</li>
<li>No global functions or constants, everything belongs to a class</li>
<li>Arrays and strings with lengths built-in and bounds checking</li>
<li>The &#8216;.&#8217; operator is always used, no more -&gt;, :: operators</li>
<li>null and boolean/bool are keywords</li>
<li>All values are initialized before use</li>
<li>Can&#8217;t use integers to govern if statements</li>
<li>Try Blocks can have a finally clause.</li>
</ul>
<p><strong>2.</strong><strong>PROPERTIES IN C#:-</strong></p>
<p>properties will be familiar with delphi and visualbasic users.The main aspect is to make to inherit the concept of get/set methods that allows programmmers extensively in Application development.</p>
<p><span style="color:#3366ff;"> public</span> int <span style="color:#ff0000;">Size </span>{</p>
<p><span style="color:#ff6600;"> </span><span style="color:#800000;"> get</span><span style="color:#ccffff;"> </span>{ return <span style="color:#ff6600;">Size</span>;  }</p>
<p><span style="color:#800000;">set</span> { <span style="color:#ff6600;">Size</span> = value; }</p>
<p>}</p>
<p>this is same as in java :-</p>
<p><span style="color:#3366ff;">public</span> int <span style="color:#ff6600;">getsize()</span></p>
<p>{   <span style="color:#00ccff;">return</span> <span style="color:#ff00ff;">size; </span> }</p>
<p><span style="color:#0000ff;">public </span>void<span style="color:#ff6600;"> setsize() </span> { <span style="color:#00ff00;"><span style="color:#ff00ff;"> size</span> </span>= value;         }</p>
<p>we will discuss detail about properties later in the coming sessions.</p>
<p><strong>3.INDEXERS :-</strong></p>
<p>c# introduces a new concept called as INDEXERS-which allows objects to be treated as arrays.The indexers are known as smart-arrays in the c# community.it is same as the properties except each element is exposed with a get/set methods.</p>
<p><strong>4.Delegates :-</strong></p>
<p><strong> </strong>A delegate is a type safe-function pointer used in .net framework,Delegates specify a method to call and optionally an object to call the method on.it improves on the function pointer approach by being type safe and being able to hold multiple methods. It improves on the interface approach by allowing the invocation of a method without the need for inner-class adapters or extra code to handle multiple-method invocations. The most important use of delegates is for event handling, which is in the next section (which gives an example of how delegates are used).</p>
<p><strong>5.Libraries </strong></p>
<p>A language is pretty much useless without libraries. C# has remarkably few core libraries, but utilizes the libraries of the .NET framework (some of which were built with C#). This article is mainly concerned with addressing the C# language in particular, rather than on .NET, which is best dealt with in a separate article. Briefly, the .NET libraries come with a rich set of libraries including Threading, Collection, XML, ADO+, ASP+, GDI+ &amp; WinForms libraries. Some of these libraries are cross-platform, while others are Windows dependent, but see the next section for a discussion on platform support.</p>
<p>These are some of them i indent to explain other features include like</p>
<ul>
<li>Managed Execution Enviornment.</li>
<li>Interoperability.</li>
<li>Assemblies,Namespaces and Access Levels.</li>
<li>Constructors / Destructors.</li>
<li>Rectangular array.</li>
<li>Attributes,Field Modifiers.</li>
<li>Predefined types , Selection statements.</li>
<li>Versioning.</li>
<li>Parameter Modifiers.</li>
<li>Interfaces.</li>
<li>Polymorphism.</li>
<li>Inheritance,</li>
<li>Type Unifaction ,Structs etc.</li>
</ul>
<p>These are some of the features of c# -in the coming sessions we will look each of them in a detail manner.</p>
<ul>
<li></li>
</ul>
<br />Posted in C# Features:-  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=169&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/21/c-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>.Net Support Languages</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/21/net-support-languages/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/21/net-support-languages/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 10:23:21 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[.Net Languages]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/2009/06/21/net-support-languages/</guid>
		<description><![CDATA[These are the set of languages that .net framework supports, some of them are as follows :- APL APL is one of the most powerful, consistent and concise computer programming languages ever devised. It is a language for describing procedures in the processing of information. It can be used to describe mathematical procedures having nothing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=163&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are the set of languages that .net framework supports,</p>
<p>some of them are as follows :-</p>
<p><strong>APL</strong></p>
<p>APL is one of the most powerful, consistent and concise computer programming languages ever devised. It is a language for describing procedures in the processing of information. It can be used to describe mathematical procedures having nothing to do with computers or to describe the way a computer works.</p>
<p><strong>C++</strong></p>
<p>C++ is a true OOP. It is one of the early Object-Oriented programming languages. C++ derives from the C language.<br />
<strong>VC++</strong><br />
Visual C++ is the name of a C++ compiler with an integrated environment from Microsoft. This includes special tools that simplify the development of great applications, as well as specific libraries. Its use is known as visual programming.</p>
<p><strong>C#</strong> C# called as C Sharp is a full fledged Object-Oriented <a href="http://www.startvbdotnet.com/dotnet/languages.aspx" target="undefined">programming</a> language from Microsoft built into the .NET Framework. First created in the late 1990’s was part of Microsoft’s whole .NET strategy.</p>
<p><strong>Cobol</strong> :-</p>
<p>COBOL (Common Business Oriented Language) was the first widely-used high-level programming language for business applications. It is considered as a programming language to have more lines of code than any other language.</p>
<p><strong>Component Pascal:-</strong></p>
<p><strong> </strong>Component Pascal is a Pascal derived programming language that is specifically designed for programming software components.</p>
<p><strong>Eiffel</strong></p>
<p>Eiffel is an Object-Oriented (OO) programming language which emphasizes the production of robust software. Eiffel is strongly statically typed mature Object-Oriented language with automatic memory management.</p>
<p><strong>Forth</strong></p>
<p>Forth is a programming language and programming environment. It features both interactive execution of commands (making it suitable as a shell for systems that lack a more formal operating system), as well as the ability to compile sequences of commands into threaded code for later execution.</p>
<p>compile sequences of commands into threaded code for later execution.</p>
<p><strong>Fortran</strong></p>
<p>Acronym for Formula Translator, Fortran is one of the oldest high-level programming languages that is still widely used in scientific computing because of its compact notation for equations, ease in handling large arrays, and huge selection of library routines for solving mathematical problems efficiently.</p>
<p><strong>Haskell</strong></p>
<p><strong></strong>Haskell is a computer programming language that is a polymorphicly typed, lazy, purely functional language, quite different from most other programming languages. It is a wide-spectrum language, suitable for a variety of applications. It is particularly suitable for programs which need to be highly modifiable and maintainable.</p>
<p><strong>Microsoft JScript</strong></p>
<p><strong></strong>Microsoft JScript is the Microsoft implementation of the ECMA 262 language specification. JScript is an interpreted, object-based scripting language. It has fewer capabilities than full-fledged Object-Oriented languages like C++ but is more than sufficiently powerful for its intended purposes.</p>
<p><strong>Mercury</strong></p>
<p><strong></strong>Mercury is a new logic/functional programming language, which combines the clarity and expressiveness of declarative programming with advanced static analysis and error detection features. Its highly optimized execution algorithm delivers efficiency far in excess of existing logic programming systems, and close to conventional programming systems. Mercury addresses the problems of large-scale program development, allowing modularity, separate compilation, and numerous optimization/time trade-offs.</p>
<p><strong>Mondrian</strong></p>
<p>Mondrian is a simple functional scripting language for Internet applications. It is a functional language specifically designed to  inter-operate with other languages in an OO environment. Current versions of Mondrian run on .NET. Mondrian also supports ASP.NET, allowing you to embed functional language code in <a href="http://www.startvbdotnet.com/dotnet/languages.aspx" target="undefined">web pages</a> along with C# code.</p>
<p><strong>Oberon</strong></p>
<p>Oberon is a programming language very much like Modula-2 in syntax but with several interesting features. It&#8217;s based on OOP concepts and provides a Windows-based graphical user interface.</p>
<p><strong>Oz</strong></p>
<p>Oz is a high-level programming language that combines constraint inference with concurrency. Oz is dynamically typed and has first-class procedures, classes, objects, exceptions and sequential threads synchronizing over a constraint store. It supports finite domain and feature constraints and has powerful primitives for programming constraint inference engines at a high level.</p>
<p><strong>Pascal</strong></p>
<p>Principle objectives for Pascal were for the language to be efficent to implement and run, allow for the development of well structured and well organized programs, and to serve as a vehicle for the teaching of the important concepts of computer programming. The Prime area of application that Pascal entails is the learning environment. This language was not really developed to be used for anything other than teaching students the basics of programming as it was originally developed for this purpose.</p>
<p><strong>Perl</strong></p>
<p>Practical Extraction and Report Language, Perl, is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It&#8217;s also a good language for many system management tasks.</p>
<p><strong>Python</strong></p>
<p>Python is an interpreted, interactive, Object-Oriented programming language. Python combines remarkable power with very clear syntax. It has modules, classes, exceptions, very high level dynamic data types, and dynamic typing.</p>
<p><strong>RPG</strong></p>
<p>Report Program Generator, RPG, is used for generation of reports from data files, including matching record and sub-total reports. RPG is one of the few languages created for punch card machines that are still in common use today. RPG or RPG IV is a native programming language for IBM&#8217;s iSeries minicomputer system.</p>
<p><strong>Scheme</strong></p>
<p>Scheme is a statically scoped programming language. It was designed to have an exceptionally clear and simple semantics and few different ways to form expressions. A wide variety of programming paradigms, including imperative, functional, and message passing styles, find convenient expression in Scheme.</p>
<p><strong>Small Talk</strong></p>
<p>SmallTalk is an expressive language that uses a simple sub set of human languages, nouns and verbs. Smalltalk was the first, and remains one of the few, pure object systems, which simply means that everything in a Smalltalk program is an object. Smalltalk is generally recognized as the second Object Programming Language (OPL). <strong></strong></p>
<p><strong>Standard ML</strong></p>
<p>Standard ML is a safe, modular, strict, functional, polymorphic programming language with compile-time type checking and type inference, garbage collection, exception handling, immutable data types and updatable references, abstract data types, and parametric modules. It has efficient implementations and a formal definition with a proof of soundness.</p>
<p><strong>Microsoft Visual Basic</strong></p>
<p>Visual Basic is a &#8220;visual programming&#8221; environment for developing Windows applications. Visual Basic makes it possible to develop complicated applications very quickly. This site is all about Visual Basic.</p>
<br />Posted in .Net Languages  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=163&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/21/net-support-languages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Program of the Day:-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/21/program-of-the-day/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/21/program-of-the-day/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 03:24:38 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[program of day]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=160</guid>
		<description><![CDATA[This post will features c# programs everyday. Posted in program of day<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=160&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post will features c# programs everyday.</p>
<br />Posted in program of day  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=160&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/21/program-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Common Language Runtime :-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/09/common-language-runtime/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/09/common-language-runtime/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 01:24:15 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[CLR :-]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=68</guid>
		<description><![CDATA[The most important component of the .Net Framework is the common language runtime(CLR),The CLR manages and executes code written in .net languages and is the basis of .net architecture similiar to java virtual machine, CLR Enviornment :- The CLR is the underlying .Net infrastructure whose facilities cover all the requirements of the software development-unlike other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=68&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The most important component of the .Net Framework is the common language runtime(CLR),The CLR manages and executes code written in .net languages and is the basis of .net architecture similiar to java virtual machine,</p>
<p><strong>CLR Enviornment :-</strong></p>
<p>The CLR is the underlying .Net infrastructure whose facilities cover all the requirements of the software development-unlike other software libraries such as MFC,ATL etc-CLR is built from a clear state.</p>
<div id="attachment_69" class="wp-caption aligncenter" style="width: 287px"><img class="size-full wp-image-69" title="Common Language Runtime" src="http://karthikeyancsharp.files.wordpress.com/2009/06/clr.jpg?w=600" alt="Common Language Runtime :-"   /><p class="wp-caption-text">Common Language Runtime :-</p></div>
<p>Figure shows two portions of the .Net Framework-the bottom postion is the CLR Enviornment and the Top portion is the<strong> Portable Executable (PE) or CLR Executables</strong> which are .Net assemblies or units of deployment</p>
<p><em><strong>The CLR is the runtime engine that loads required classes ,performs Just-In -Time compilation on needed methods ,enforces security checks and accomplishes the bunch of runtime functionalities.</strong></em></p>
<p><strong><em>.</em>Net Portable Executable (PE):</strong><em><strong>-</strong></em></p>
<p>A Windows executable, EXE or DLL, must conform to a file format called the <em>PE </em>file format,which is a derivative of the Microsoft Common Object File Format (COFF). Both of theseformats are fully specified and publicly available. The Windows OS knows how to load and execute DLLs and EXEs because it understands the format of a PE file. Given this, any compiler that wants to generate Windows executables must obey the PE/COFF specification.</p>
<p>Standard Windows PE files are divided into two major sections. The first section includes thePE/COFF headers that reference the contents within the PE file. In addition to the header section,the PE file holds a number of native image sections, including the .data, .rdata, .rsrc, and.text sections. These are the standard sections of a typical Windows executable, but Microsoft&#8217;s C/C++ compiler allows you to add your own custom sections into the PE file using a compiler pragma statement. For example, you can create your own data section to hold encrypted data that only you can read. Taking advantage of this ability, Microsoft has added a few new sections to the normal PE file specifically to support the CLR&#8217;s functionality. The CLR understands andmanages the new sections. For example, the CLR will read these sections and determine how to load classes and execute your code at runtime.</p>
<div id="attachment_74" class="wp-caption aligncenter" style="width: 327px"><img class="size-full wp-image-74" title="gfgf" src="http://karthikeyancsharp.files.wordpress.com/2009/06/gfgf.jpg?w=600" alt="Portable Executable Format :-"   /><p class="wp-caption-text">Portable Executable Format :-</p></div>
<p>As shown in Figure, the sections that Microsoft has added to the normal PE format are the CLR header and the CLR data sections. While the CLR header stores information to indicate that the PE file is a .NET executable, the CLR data section contains metadata and IL code, both of which determine how the program will be executed.</p>
<p>Also the other CLR Enviornment includes Metadata,Assemblies,Manifests,MSIL,CTS,CLS etc,we will discuss in the coming sessions &#8230;..</p>
<p><em><strong><br />
</strong></em></p>
<br />Posted in CLR :-  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=68&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/09/common-language-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>

		<media:content url="http://karthikeyancsharp.files.wordpress.com/2009/06/clr.jpg" medium="image">
			<media:title type="html">Common Language Runtime</media:title>
		</media:content>

		<media:content url="http://karthikeyancsharp.files.wordpress.com/2009/06/gfgf.jpg" medium="image">
			<media:title type="html">gfgf</media:title>
		</media:content>
	</item>
		<item>
		<title>C# &#8211; Introduction :-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/06/c-introduction/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/06/c-introduction/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 16:07:17 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[C#-Introduction]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=56</guid>
		<description><![CDATA[this page will discuss the introduction to c#. Posted in C#-Introduction<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=56&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>this page will discuss the introduction to c#.</p>
<br />Posted in C#-Introduction  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=56&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/06/c-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft .Net</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/06/microsoft-net/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/06/microsoft-net/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 15:29:11 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[.Net Framework]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=36</guid>
		<description><![CDATA[While the main strategy of .NET is to enable software as a service, .NET is much more than that. Aside from embracing the Web, Microsoft .NET acknowledges and responds to the following trends within the software industry today: Distributed computing :- Simplifies the development of robust client/server applications. Current distributed technologies require high vendor-affinity and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=36&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While the main strategy of .NET is to enable software as a service, .NET is much more than that. Aside from embracing the Web, Microsoft .NET acknowledges and responds to the following trends within the software industry today:</p>
<ul>
<li><em><strong>Distributed computing :-</strong><br />
</em></li>
</ul>
<p>Simplifies the development of robust client/server applications. Current distributed technologies require high vendor-affinity and lack interoperation with the Web.Microsoft .NET provides a remoting architecture that exploits open Internet standards,including the Hypertext Transfer Protocol (HTTP), Extensible Markup Language (XML),and Simple Object Access Protocol (SOAP).</p>
<ul>
<li><em><strong>Componentization :-</strong><br />
</em></li>
</ul>
<p>Simplifies the integration of software components developed by different vendors. TheComponent Object Model (COM) has brought reality to software plug-and-play, but COM component development and deployment are too complex. Microsoft .NET provides a simpler way to build and deploy components.</p>
<ul>
<li><strong><em>Enterprise services :-</em></strong></li>
</ul>
<p>Allow the development of scalable, enterprise applications without writing code to manage transaction, security, or pooling. Microsoft .NET continues to support enterprise services, since these services have greatly reduced development time and effort for building large-scale applications.</p>
<ul>
<li><em><strong>Web paradigm shifts :-</strong><br />
</em></li>
</ul>
<p>Represents changes in web technologies to simplify the development of web applications.Over the last few years, web application development has shifted from connectivity(TCP/IP), to presentation (HTML), to programmability (XML and SOAP). A key goal of Microsoft .NET is to enable software to be sold and distributed as a service.</p>
<ul>
<li><em><strong>Maturity factors :-</strong><br />
</em></li>
</ul>
<p>Represents lessons that the software industry has learned from developing large-scale enterprise and web applications. A commercial web application must support interoperability, scalability, availability, and manageability. Microsoft .NET facilitates all these goals.</p>
<p>Although these are the main concepts that Microsoft .NET incorporates, what&#8217;s more notable is that Microsoft .NET uses open Internet standards (HTTP, XML, and SOAP) at its core to transmit an object from one machine to another across the Internet. In fact, there is bidirectional mapping between XML and objects in .NET. For example, a class can be expressed as an XML Schema Definition (XSD); an object can be converted to and from an XML buffer; a method can be specified using an XML format called Web Services Description Language (WSDL); and an invocation (method call) can be expressed using an XML format called SOAP.</p>
<br />Posted in .Net Framework  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=36&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/06/microsoft-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>.Net Overview :-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/06/net-overview/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/06/net-overview/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 15:16:01 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[.Net Framework]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=30</guid>
		<description><![CDATA[Microsoft announced its .Net initative in july 2000,.Micrsoft has spent the last three years in the development of its .net framework which was publicly launched at PDC ,Orlando,Florida. Net Framework is a new development framework  with a new programming interfaces with windows services and API&#8217;s ,integrating a number of technologies that are part of microsoft [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=30&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft announced its .Net initative in july 2000,.Micrsoft has spent the last three years in the development of its .net framework which was publicly launched at PDC ,Orlando,Florida.</p>
<p>Net Framework is a new development framework  with a new programming interfaces with windows services and API&#8217;s ,integrating a number of technologies that are part of microsoft from the late 1990&#8242;s.This includes COM+ Component services,ASP web development framework,a commitment to XML and  object-oriented design ,also with support for new web services protocols like WSDL,UDDI,SOAP etc,</p>
<div id="attachment_46" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-46" title=".Net Architecture!!" src="http://karthikeyancsharp.files.wordpress.com/2009/06/netframework.gif?w=600" alt=".Net Overall Architecture"   /><p class="wp-caption-text">.Net Overall Architecture</p></div>
<p>The plateform consists of four product groups-they are :-</p>
<ul>
<li><strong>Development Tools :-</strong></li>
</ul>
<p>A set of languages including c#.net,vb.net,a set of development tools including Visual studio.net,a comprehensive class library for building web abd windows based applications ,as well as Common language Runtime to execute objetc built within the .net framework.</p>
<ul>
<li><strong>Specialized-Servers :-</strong></li>
</ul>
<p>A set of enterprise servers like sqlserver2005,exchange server,Biztalk Server,Sharepoint etc these servers have special functionality in providing data storage solutions,B2B commerce,Email, other data centric applications development etc.</p>
<ul>
<li><strong>Web Services :-</strong></li>
</ul>
<p>Micrsoft provides various web servcies both with third party support and also with integrity support to enable web applications to interoperable over networks.</p>
<ul>
<li><strong>Devices :-</strong></li>
</ul>
<p>This provides a layout model to design Non-PC based devices like cell-phones to gameboxes(X-BOX) etc.</p>
<br />Posted in .Net Framework  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=30&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/06/net-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>

		<media:content url="http://karthikeyancsharp.files.wordpress.com/2009/06/netframework.gif" medium="image">
			<media:title type="html">.Net Architecture!!</media:title>
		</media:content>
	</item>
		<item>
		<title>C#-Operators :-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/06/c-operators/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/06/c-operators/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:42:35 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[C#- Operators]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=27</guid>
		<description><![CDATA[This will explain the various operators supported by c# and its enviornment. Posted in C#- Operators<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=27&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This will explain the various operators supported by c# and its enviornment.</p>
<br />Posted in C#- Operators  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=27&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/06/c-operators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>C#-DataTypes :-</title>
		<link>http://karthikeyancsharp.wordpress.com/2009/06/06/c-datatypes/</link>
		<comments>http://karthikeyancsharp.wordpress.com/2009/06/06/c-datatypes/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:40:16 +0000</pubDate>
		<dc:creator>Naveen Karthikeyan</dc:creator>
				<category><![CDATA[C#-DataTypes :-]]></category>
		<category><![CDATA[datatypes]]></category>

		<guid isPermaLink="false">http://karthikeyancsharp.wordpress.com/?p=24</guid>
		<description><![CDATA[Data types are the building blocks of any language, Microsoft has tried to standardize the data types in .net framework by introducing a limited, fixed set of types that can be used for efficient programming. C# Data types are of generally two types: Values types:- Value types are allocated to stack(It is a data structure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=24&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Data types</strong> are the building blocks of any language, Microsoft has tried to standardize the data types in .net framework by introducing a limited, fixed set of types that can be used for efficient programming.</p>
<p><strong>C# Data types are of generally two types:</strong></p>
<p><strong>Values types:-</strong></p>
<ul>
<li>Value types are allocated to stack<em>(It is a data structure which stores in FIFO type-it is a area of memory and is determined at compiled time)</em>.</li>
<li>Value type variable contains the value of the variable itself.</li>
<li>When you copy a value type, the actual data is actually copied and each variable is independently manipulated.</li>
<li>Int, float, Boolean, double etc are value types categories.</li>
<li>struct is a value type.</li>
</ul>
<p><strong>Reference types:-</strong></p>
<ul>
<li>Reference types are allocated to heap<em>(Heap consists of memory available at Run time).</em></li>
<li>Reference type variable contains the address of the memory location where it is stored.</li>
<li>When copying a reference type variable, only the memory address is copied, both variable still locate in the same location</li>
<li>String and object are reference types.</li>
<li>Classes and interfaces are references types.</li>
</ul>
<p>The following program defines the list of Integral ,Float datatypes</p>
<pre>

<div id="attachment_146" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-146" title="datatypes" src="http://karthikeyancsharp.files.wordpress.com/2009/06/datatypes.png?w=600" alt="Integral-Datatypes"   /><p class="wp-caption-text">Integral-Datatypes</p></div></pre>
<br />Posted in C#-DataTypes :-  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/karthikeyancsharp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/karthikeyancsharp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/karthikeyancsharp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/karthikeyancsharp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/karthikeyancsharp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/karthikeyancsharp.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/karthikeyancsharp.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/karthikeyancsharp.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=karthikeyancsharp.wordpress.com&amp;blog=8061444&amp;post=24&amp;subd=karthikeyancsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://karthikeyancsharp.wordpress.com/2009/06/06/c-datatypes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/701401bc76f867f6d76b8e5ea1889911?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">karthikeyancsharp</media:title>
		</media:content>

		<media:content url="http://karthikeyancsharp.files.wordpress.com/2009/06/datatypes.png" medium="image">
			<media:title type="html">datatypes</media:title>
		</media:content>
	</item>
	</channel>
</rss>
