<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Matt W's Windows Workflow Place : LINQ</title><link>http://blogs.msdn.com/mwinkle/archive/tags/LINQ/default.aspx</link><description>Tags: LINQ</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Proving a Point with LINQ (or, the Longest Type Names in the .NET Framework)</title><link>http://blogs.msdn.com/mwinkle/archive/2008/05/01/proving-a-point-with-linq-or-the-longest-type-names-in-the-net-framework.aspx</link><pubDate>Thu, 01 May 2008 02:30:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8445393</guid><dc:creator>mwinkle</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/mwinkle/comments/8445393.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mwinkle/commentrss.aspx?PostID=8445393</wfw:commentRss><description>&lt;p&gt;I will often take a few moments during a presentation to get a chuckle by bringing up the &lt;a href="http://msdn.microsoft.com/en-us/library/system.workflow.runtime.hosting.sharedconnectionworkflowcommitworkbatchservice.aspx"&gt;SharedConnectionWorkflowCommitWorkBatchService&lt;/a&gt;.&amp;#160; Due to the sheer length of the type name, it's sure to bring a smile or two in one of my otherwise snore-inducing presentation.&lt;/p&gt;  &lt;p&gt;The other day, while reviewing a deck for a colleague I brought up that he should mention this type, and that it usually gets a laugh from a developer audience.&amp;#160; He then asked, &amp;quot;Is that really the longest type name in the framework?&amp;quot;&amp;#160; My response, &amp;quot;Well, I'm not really sure, I bet you could do some LINQ magic in order to figure it out.&amp;quot;&amp;#160; &lt;/p&gt;  &lt;p&gt;Well, sitting on the bus this morning with some traffic time to spare (and needing to work on my LINQ skills a bit), put together some code.&amp;#160; My goal was to go through all of the types, calculate their length and figure out which one was the longest named type.&amp;#160; You can replicate this, create a new console application, right click to add references, and select all the references you want to add into this comparison.&amp;#160; I added all of the system.* assemblies, PresentationFramework, PresentationCore and WindowBase.&amp;#160; You could do even more by selecting everything in the reference dialog.&lt;/p&gt;  &lt;p&gt;The thing that appeals to me about LINQ is really that i can just write a query, I don't have to worry about looping through a number of times.&amp;#160; I also like the fact I can develop by refining, that is, I can get a collection back, tweak the query to shape it, take that new collection and query against that. &lt;/p&gt;  &lt;p&gt;Let's first look at what I started with:&lt;/p&gt;  &lt;pre class="csharpcode"&gt;var orderedTypeListing =
       (from assembly &lt;span class="kwrd"&gt;in&lt;/span&gt; AppDomain.CurrentDomain.GetAssemblies()
        select assembly.GetExportedTypes());&lt;/pre&gt;
&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;

&lt;p&gt;This ends up returning an object of type IEnumerable&amp;lt;List&amp;lt;Type&amp;gt;&amp;gt;, which doesn't quite get me to what I want.&lt;/p&gt;

&lt;p&gt;I use the Aggregate extension method to operate on this and create an entire list of all the types contained (think of this as flattening the tree by one level, or only returning the leaf nodes in the tree).&amp;#160; With the Aggregate method, I need to provide the operation to do the accumulation.&lt;/p&gt;

&lt;pre class="csharpcode"&gt;var orderedTypeListing =
   (from assembly &lt;span class="kwrd"&gt;in&lt;/span&gt; AppDomain.CurrentDomain.GetAssemblies()
     select assembly.GetExportedTypes()).Aggregate(
           (x, y) =&amp;gt;
           { &lt;span class="kwrd"&gt;return&lt;/span&gt; x.Union(y).ToArray(); }
        )&lt;/pre&gt;
&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;

&lt;p&gt;The only weirdness here is that I have to use ToArray(); since Aggregate returns T[], rather than IEnumerable&amp;lt;T&amp;gt;.&lt;/p&gt;

&lt;p&gt;Now I add a little bit of code to do some ordering.&amp;#160; I like the ordering syntax since I just provide a way to get the value I want to sort by.&amp;#160; Remember to use OrderByDescending in order to get the right ordering.&lt;/p&gt;

&lt;p&gt;Our query near looks like this:&lt;/p&gt;

&lt;pre class="csharpcode"&gt;var orderedTypeListing =
   (from assembly &lt;span class="kwrd"&gt;in&lt;/span&gt; AppDomain.CurrentDomain.GetAssemblies()
     select assembly.GetExportedTypes()).Aggregate(
           (x, y) =&amp;gt;
           { &lt;span class="kwrd"&gt;return&lt;/span&gt; x.Union(y).ToArray(); }
        ).OrderByDescending(
            (x) =&amp;gt;
            { &lt;span class="kwrd"&gt;return&lt;/span&gt; x.Name.Length; }
        );&lt;/pre&gt;
&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;

&lt;p&gt;So this returns a list, ordered by the length of the name.&lt;/p&gt;

&lt;p&gt;I could just grab the first one off the list, and I'd be done, but I'd like to see the 100 longest names, just in case I'm wrong about our friend SharedConnectionWorkflowCommitWorkBatchService.&amp;#160;&amp;#160; To do this, I'll say I want to take 100 off the top of the list and print those out.&amp;#160; &lt;/p&gt;

&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;int&lt;/span&gt; count = 1;
orderedTypeListing.Take(100).ToList().ForEach
(
    x =&amp;gt; 
    Console.WriteLine(&lt;span class="str"&gt;&amp;quot;{0}: {1}, {3} ({2})&amp;quot;&lt;/span&gt;, 
    count++, 
    x.Name.Length, 
    x.Assembly.FullName.Split(&lt;span class="str"&gt;&amp;quot;,&amp;quot;&lt;/span&gt;.ToCharArray())[1], 
    x.Name)
    );&lt;/pre&gt;
&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;

&lt;p&gt;This will pretty print the top 100 longest names (these are at the bottom of the post).&lt;/p&gt;

&lt;p&gt;Next, i thought, I'd really like to see a histogram of the sizes.&amp;#160; To do that, I need to group by data.&amp;#160; The Group() extension method, just like the order method, allows me to pass in the value by which I want to group (and that can be computed, say a hash).&amp;#160; It also returns an IGrouping that lets me see the key (in my case, the size of the key) and the IEnumerable itself.&lt;/p&gt;

&lt;pre class="csharpcode"&gt;var groupedTypeListing = orderedTypeListing.GroupBy(
    t =&amp;gt; 
    { &lt;span class="kwrd"&gt;return&lt;/span&gt; t.Name.Length; }
    );
groupedTypeListing.ToList().ForEach(
    x =&amp;gt; 
        Console.WriteLine(&lt;span class="str"&gt;&amp;quot;{0} : {1}&amp;quot;&lt;/span&gt;, x.Key, x.Count())
        );&lt;/pre&gt;
&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;

&lt;p&gt;Finally, I thought I'd see just how many types were included in each version of the framework, and prove that I can group by anything, including manipulating the string on the assembly's full name.&lt;/p&gt;

&lt;pre class="csharpcode"&gt;var groupedVersionListing = orderedTypeListing.GroupBy(
    t =&amp;gt; 
    { &lt;span class="kwrd"&gt;return&lt;/span&gt; t.Assembly.FullName.Split(&lt;span class="str"&gt;&amp;quot;,&amp;quot;&lt;/span&gt;.ToCharArray())[1]; }
    );
groupedVersionListing.ToList().ForEach(
    x =&amp;gt; 
        Console.WriteLine(&lt;span class="str"&gt;&amp;quot;{0} : {1}&amp;quot;&lt;/span&gt;, x.Key, x.Count()
        )
);&lt;/pre&gt;

&lt;p&gt;This has now let me retrieve a lot of interesting data (interesting at least to me :-) ) that I was able to write with a pretty simple query syntax and do some somewhat sophisticated things (grouping, etc).&lt;/p&gt;

&lt;p&gt;It turns out that our friend SharedConnectionWorkflowCommitWorkBatchService is only number 16 on my list.&amp;#160; The real honor goes to:&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h2&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.attachedpropertybrowsablewhenattributepresentattribute(VS.85).aspx"&gt;AttachedPropertyBrowsableWhenAttributePresentAttribute&lt;/a&gt;, with 53 characters.&lt;/h2&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Histogram of Type Name Sizes&lt;/h1&gt;

&lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mwinkle/WindowsLiveWriter/ProvingaPoint_C501/image_4.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mwinkle/WindowsLiveWriter/ProvingaPoint_C501/image_thumb_1.png" width="644" height="340" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Top 100 Longest Type Names&lt;/h1&gt;

&lt;table style="width: 443pt; border-collapse: collapse" border="0" cellspacing="0" cellpadding="0" width="590"&gt;&lt;colgroup&gt;&lt;col style="width: 48pt" span="span" width="64" /&gt;&lt;col style="width: 299pt; mso-width-source: userset; mso-width-alt: 14555" width="398" /&gt;&lt;col style="width: 48pt" width="64" /&gt;&lt;/colgroup&gt;&lt;tbody&gt;
    &lt;tr style="height: 18.75pt" height="25"&gt;
      &lt;td style="width: 48pt; height: 18.75pt" class="xl65" height="25" width="64"&gt;&lt;strong&gt;Rank&lt;/strong&gt;&lt;/td&gt;

      &lt;td style="width: 48pt; border-left-style: none" class="xl65" width="64"&gt;&lt;strong&gt;Length&lt;/strong&gt;&lt;/td&gt;

      &lt;td style="width: 299pt; border-left-style: none" class="xl65" width="398"&gt;&lt;strong&gt;Name&lt;/strong&gt;&lt;/td&gt;

      &lt;td style="width: 48pt; border-left-style: none" class="xl65" width="64"&gt;&lt;strong&gt;Version&lt;/strong&gt;&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;1&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;54&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;AttachedPropertyBrowsableWhenAttributePresentAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;2&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;53&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ListViewVirtualItemsSelectionRangeChangedEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;3&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;52&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ServiceModelEnhancedConfigurationElementCollection`1&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;4&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;50&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellContextMenuStripNeededEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;5&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;50&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ListViewVirtualItemsSelectionRangeChangedEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;6&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;49&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowContextMenuStripNeededEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;7&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;49&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;WorkflowServiceAttributesDynamicPropertyValidator&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;8&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;48&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewColumnDividerDoubleClickEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;9&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;47&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellContextMenuStripNeededEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;10&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;47&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellStyleContentChangedEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;11&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;47&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ReadOnlyActiveDirectorySchemaPropertyCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;12&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;47&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ExtendedWorkflowRuntimeServiceElementCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;13&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;46&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;IDataGridColumnStyleEditingNotificationService&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;14&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;46&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowContextMenuStripNeededEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;15&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;46&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;UpdateProgressAssociatedUpdatePanelIDConverter&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;
        &lt;h5&gt;16&lt;/h5&gt;
      &lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;
        &lt;h5&gt;46&lt;/h5&gt;
      &lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;
        &lt;h5&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SharedConnectionWorkflowCommitWorkBatchService&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/h5&gt;
      &lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;
        &lt;h5&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/h5&gt;
      &lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;17&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;46&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DispatcherUnhandledExceptionFilterEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;18&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewColumnDividerDoubleClickEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;19&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellToolTipTextNeededEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;20&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewEditingControlShowingEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;21&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowDividerDoubleClickEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;22&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;NamedServiceModelExtensionCollectionElement`1&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;23&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;StandardBindingOptionalReliableSessionElement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;24&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;X509CertificateTrustedIssuerElementCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;25&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;X509ScopedServiceCertificateElementCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;26&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;InitiatorServiceModelSecurityTokenRequirement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;27&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;RecipientServiceModelSecurityTokenRequirement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;28&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataContractSerializerMessageContractImporter&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;29&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ClientWindowsAuthenticationMembershipProvider&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;30&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;IClientFormsAuthenticationCredentialsProvider&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;31&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;AttachedPropertyBrowsableForChildrenAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;32&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellStyleContentChangedEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;33&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewColumnDesignTimeVisibleAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;34&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;CodeParameterDeclarationExpressionCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;35&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ReadOnlyActiveDirectorySchemaClassCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;36&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ServiceModelConfigurationElementCollection`1&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;37&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;UseManagedPresentationBindingElementImporter&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;38&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;WS2007FederationHttpBindingCollectionElement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;39&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;KeyContainerPermissionAccessEntryCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;KeyContainerPermissionAccessEntryEnumerator&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewAutoSizeColumnsModeEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellErrorTextNeededEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowHeightInfoNeededEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;44&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowHeightInfoPushedEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;45&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;PerformanceCounterPermissionEntryCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;46&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;TypeUniqueIdentifierSchemaImporterExtension&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;47&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;IRemoteArgumentDictionaryEnumeratorContract&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;48&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ForeignKeyReferenceAlreadyHasValueException&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;49&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SecurityPackageContextConnectionInformation&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;50&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;PrintSystemObjectPropertiesChangedEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;51&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;IssuedTokenClientBehaviorsElementCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;52&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;IssuedTokenParametersEndpointAddressElement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;53&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;X509ServiceCertificateAuthenticationElement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;54&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;TransportConfigurationTypeElementCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;55&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ClientFormsAuthenticationMembershipProvider&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;56&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ServiceDescriptionFormatExtensionCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;57&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;43&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DispatcherUnhandledExceptionFilterEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;58&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellToolTipTextNeededEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;59&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewEditingControlShowingEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;60&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewAutoSizeColumnModeEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;61&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewColumnStateChangedEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;62&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowErrorTextNeededEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;63&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowDividerDoubleClickEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;64&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ToolStripItemDesignerAvailabilityAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;65&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;EdmRelationshipNavigationPropertyAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.5&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;66&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;BehaviorServiceAdornerCollectionEnumerator&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;67&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DirectoryServicesPermissionEntryCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;68&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ForestTrustRelationshipCollisionCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;69&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;X509ClientCertificateAuthenticationElement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;70&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ServiceControllerPermissionEntryCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;71&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DatabaseNotEnabledForNotificationException&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;72&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;42&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DesignTimeResourceProviderFactoryAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;73&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;CryptographicUnexpectedOperationException&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;74&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridPreferredColumnWidthTypeConverter&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;75&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;IDesignTimeResourceProviderFactoryService&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;76&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SiteMapDesignerHierarchicalDataSourceView&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;77&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;WindowsUserNameSecurityTokenAuthenticator&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;78&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;PrintSystemObjectPropertyChangedEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;79&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ConnectionOrientedTransportBindingElement&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;80&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SecurityContextSecurityTokenAuthenticator&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;81&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SecureConversationSecurityTokenParameters&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;82&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;X509CertificateInitiatorServiceCredential&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;83&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;X509CertificateRecipientServiceCredential&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;84&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;RecordDescriptionToTypeReferenceConverter&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;85&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;BlobMessageEncodingBindingElementImporter&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;86&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DistributedTransactionPermissionAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;87&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;CompositeActivityDesignerLayoutSerializer&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;88&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SqlPersistenceWorkflowInstanceDescription&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;89&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;41&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;AttachedPropertyBrowsableForTypeAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v3.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;90&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewAutoSizeColumnsModeEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;91&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellErrorTextNeededEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;92&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewCellStateChangedEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;93&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowHeightInfoNeededEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;94&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DataGridViewRowHeightInfoPushedEventArgs&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;95&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ListViewItemSelectionChangedEventHandler&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;96&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DesignerSerializationVisibilityAttribute&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;97&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;TypeSmallDateTimeSchemaImporterExtension&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;98&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;SchemaImporterExtensionElementCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;99&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;ProtectedConfigurationProviderCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;

    &lt;tr style="height: 15pt" height="20"&gt;
      &lt;td style="border-top-style: none; height: 15pt" class="xl66" height="20" align="right"&gt;100&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66" align="right"&gt;40&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;DirectoryAttributeModificationCollection&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/td&gt;

      &lt;td style="border-top-style: none; border-left-style: none" class="xl66"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;v2.0&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8445393" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mwinkle/archive/tags/LINQ/default.aspx">LINQ</category></item></channel></rss>