<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: .NET Assembly FAQ &#8211; Part 1</title>
	<atom:link href="http://www.csharp411.com/net-assembly-faq-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com/net-assembly-faq-part-1/</link>
	<description>C# Development</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:14:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: kaka4.......</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-56</link>
		<dc:creator>kaka4.......</dc:creator>
		<pubDate>Sat, 18 Dec 2010 09:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-56</guid>
		<description>The assembly is an important element of .NET programming. On the .NET platform, an assembly is a unit of reuse, versioning, security and deployment.an application, they must be placed into modules that are part of an assembly. Every managed application in .NET is deployed as an assembly. It means that the entire .NET code on compilation gets converted into an Intermediate Language (IL) code and gets stored as an assembly. In addition to the IL code, an assembly also contains Assembly metadata (Manifest), Type metadata and Resources. 
If an assembly is to be made up of several programs, the programs can be stored in separate modules. Suppose there are two source files a.cs and b.cs of which, a.cs is stored in a module, whereas, ‘b.cs’ is stored in the assembly itself. Both comprise an assembly named mydll.dll.</description>
		<content:encoded><![CDATA[<p>The assembly is an important element of .NET programming. On the .NET platform, an assembly is a unit of reuse, versioning, security and deployment.an application, they must be placed into modules that are part of an assembly. Every managed application in .NET is deployed as an assembly. It means that the entire .NET code on compilation gets converted into an Intermediate Language (IL) code and gets stored as an assembly. In addition to the IL code, an assembly also contains Assembly metadata (Manifest), Type metadata and Resources.<br />
If an assembly is to be made up of several programs, the programs can be stored in separate modules. Suppose there are two source files a.cs and b.cs of which, a.cs is stored in a module, whereas, ‘b.cs’ is stored in the assembly itself. Both comprise an assembly named mydll.dll.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pks007</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-55</link>
		<dc:creator>pks007</dc:creator>
		<pubDate>Sat, 18 Dec 2010 09:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-55</guid>
		<description>I m so confused that what is actually an assembly and what is the purpose of using assembly?can we create an assembly for an application?what is difference b/w assembly and namspace plz tell me??</description>
		<content:encoded><![CDATA[<p>I m so confused that what is actually an assembly and what is the purpose of using assembly?can we create an assembly for an application?what is difference b/w assembly and namspace plz tell me??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-54</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 12 Nov 2010 05:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-54</guid>
		<description>Question: What are functions performed by an assembly? 
A.  It contains code that the CLR executes. 
B.  It forms a security boundary. 
C.  It&#039;s the smallest unit of code. 
D.  It&#039;s the unit at which side-by-side execution is supported. 
E.  It forms a version boundary. 

Answer: ???</description>
		<content:encoded><![CDATA[<p>Question: What are functions performed by an assembly?<br />
A.  It contains code that the CLR executes.<br />
B.  It forms a security boundary.<br />
C.  It&#8217;s the smallest unit of code.<br />
D.  It&#8217;s the unit at which side-by-side execution is supported.<br />
E.  It forms a version boundary. </p>
<p>Answer: ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ih-77</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-53</link>
		<dc:creator>ih-77</dc:creator>
		<pubDate>Mon, 18 Oct 2010 08:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-53</guid>
		<description>&quot;The assembly manifest is required; the other elements are optional.&quot;

Do you mean that the source code is not required?</description>
		<content:encoded><![CDATA[<p>&#8220;The assembly manifest is required; the other elements are optional.&#8221;</p>
<p>Do you mean that the source code is not required?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timm</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-52</link>
		<dc:creator>timm</dc:creator>
		<pubDate>Sun, 15 Aug 2010 16:56:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-52</guid>
		<description>@Christian: Yes, a single namespace can span across multiple assemblies. Of course you&#039;ll want to ensure that you don&#039;t have any duplicate type names or you&#039;ll get an ambiguous definition error.</description>
		<content:encoded><![CDATA[<p>@Christian: Yes, a single namespace can span across multiple assemblies. Of course you&#8217;ll want to ensure that you don&#8217;t have any duplicate type names or you&#8217;ll get an ambiguous definition error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-51</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Sun, 15 Aug 2010 16:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-51</guid>
		<description>Yeah 3000 files in one project is huge.  This Application has more than 100 total projects.   The specific project that holds 3000 files is basically holding (copybooks) datasets for transmitting data from the CICS server side DB2 storage to the desktop application and vice-verca.

The other 100 projects use the Schema project to access the dataset (particular data layout).  If I break the 3000 files out to 6 different projects (based on different products) is there a way to access the different assemblies under on namespace.  So, if the 6 new projects are called Project.Schema1, Project.Schema2.... etc...  Can I access the 6 different schemas and there xsd&#039;s using one namespace called &quot;SCHEMA&quot;.  The xsd&#039;s are unique.</description>
		<content:encoded><![CDATA[<p>Yeah 3000 files in one project is huge.  This Application has more than 100 total projects.   The specific project that holds 3000 files is basically holding (copybooks) datasets for transmitting data from the CICS server side DB2 storage to the desktop application and vice-verca.</p>
<p>The other 100 projects use the Schema project to access the dataset (particular data layout).  If I break the 3000 files out to 6 different projects (based on different products) is there a way to access the different assemblies under on namespace.  So, if the 6 new projects are called Project.Schema1, Project.Schema2&#8230;. etc&#8230;  Can I access the 6 different schemas and there xsd&#8217;s using one namespace called &#8220;SCHEMA&#8221;.  The xsd&#8217;s are unique.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timm</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-50</link>
		<dc:creator>timm</dc:creator>
		<pubDate>Sun, 15 Aug 2010 15:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-50</guid>
		<description>@Christian: 3000 files is a massive project! Not only is it unwieldly to manage and takes too long to compile, it&#039;s probably rife with dependency issues.

Ideally the project should be subdivided into multiple smaller projects.  Create a dependency tree to help guide you.  Just like an inheritance tree, the project dependencies ideally should flow in a single direction (so there are no circular dependencies).  Good luck!</description>
		<content:encoded><![CDATA[<p>@Christian: 3000 files is a massive project! Not only is it unwieldly to manage and takes too long to compile, it&#8217;s probably rife with dependency issues.</p>
<p>Ideally the project should be subdivided into multiple smaller projects.  Create a dependency tree to help guide you.  Just like an inheritance tree, the project dependencies ideally should flow in a single direction (so there are no circular dependencies).  Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-49</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Sat, 14 Aug 2010 00:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-49</guid>
		<description>if I have a solution with multiple projects and one of those projects (a schema holding project) holds about 3000 files what is the best way to break this up to decrease compile time.  I&#039;m currently trying to break the one schema project out to five project schema files ( based on business differences).   I&#039;m current using vs5 on XP - 32 bit.   Is this the best way to go or is there a better way.</description>
		<content:encoded><![CDATA[<p>if I have a solution with multiple projects and one of those projects (a schema holding project) holds about 3000 files what is the best way to break this up to decrease compile time.  I&#8217;m currently trying to break the one schema project out to five project schema files ( based on business differences).   I&#8217;m current using vs5 on XP &#8211; 32 bit.   Is this the best way to go or is there a better way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hari</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-48</link>
		<dc:creator>hari</dc:creator>
		<pubDate>Tue, 20 Apr 2010 09:44:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-48</guid>
		<description>fantus article, best i had ever read. keep it up, god bless you.</description>
		<content:encoded><![CDATA[<p>fantus article, best i had ever read. keep it up, god bless you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kasi</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-1/#comment-47</link>
		<dc:creator>kasi</dc:creator>
		<pubDate>Sat, 10 Apr 2010 12:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-1/#comment-47</guid>
		<description>Five(5) types of assemblies:

1. Single File
2. Multifile
3. Private
4. Shared
5. Sattelite</description>
		<content:encoded><![CDATA[<p>Five(5) types of assemblies:</p>
<p>1. Single File<br />
2. Multifile<br />
3. Private<br />
4. Shared<br />
5. Sattelite</p>
]]></content:encoded>
	</item>
</channel>
</rss>

