<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>幻想曲.Net &#187; vs2008</title>
	<atom:link href="http://yibin.us/tag/vs2008/feed" rel="self" type="application/rss+xml" />
	<link>http://yibin.us</link>
	<description>面朝大海，春暖花开</description>
	<lastBuildDate>Wed, 02 Jun 2010 14:32:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>vs2008sp1中智能提示变英文的HotFix</title>
		<link>http://yibin.us/archives/6046</link>
		<comments>http://yibin.us/archives/6046#comments</comments>
		<pubDate>Thu, 27 Nov 2008 08:31:14 +0000</pubDate>
		<dc:creator>幻想曲</dc:creator>
				<category><![CDATA[笔记本子]]></category>
		<category><![CDATA[vs2008]]></category>

		<guid isPermaLink="false">http://www.yibin001.com/?p=6046</guid>
		<description><![CDATA[简体中文版vs2008打了sp1之后，部分智能提示变成了英文现在出了补丁，但该补丁未经过回归测试。下载地址：http://code.msdn.microsoft.com/KB957507/Release/ProjectReleases.aspx?ReleaseId=1854
FilesRuntime Binary VS90SP1-KB957507-CHS-x86.exeruntime binary, 6300K, uploaded Wed &#8211; 281 downloadsRuntime Binary VS90SP1-KB957507-CHT-x86.exeruntime binary, 6435K, uploaded Wed &#8211; 3 downloadsRuntime Binary VS90SP1-KB957507-DEU-x86.exeruntime binary, 6928K, uploaded Wed &#8211; 7 downloadsRuntime Binary VS90SP1-KB957507-ESN-x86.exeruntime binary, 6516K, uploaded Wed &#8211; 2 downloadsRuntime Binary VS90SP1-KB957507-FRA-x86.exeruntime binary, 6576K, uploaded Wed &#8211; 7 downloadsRuntime Binary VS90SP1-KB957507-ITA-x86.exeruntime binary, 6486K, uploaded Wed &#8211; 2 downloadsRuntime [...]]]></description>
			<content:encoded><![CDATA[<p>简体中文版vs2008打了sp1之后，部分智能提示变成了英文<br />现在出了补丁，但该补丁未经过回归测试。<br />下载地址：<br /><a href="http://code.msdn.microsoft.com/KB957507/Release/ProjectReleases.aspx?ReleaseId=1854" target="_blank">http://code.msdn.microsoft.com/KB957507/Release/ProjectReleases.aspx?ReleaseId=1854</a></p>
<blockquote class="yb-quote"><p>Files<br />Runtime Binary VS90SP1-KB957507-CHS-x86.exe<br />runtime binary, 6300K, uploaded Wed &#8211; 281 downloads<br />Runtime Binary VS90SP1-KB957507-CHT-x86.exe<br />runtime binary, 6435K, uploaded Wed &#8211; 3 downloads<br />Runtime Binary VS90SP1-KB957507-DEU-x86.exe<br />runtime binary, 6928K, uploaded Wed &#8211; 7 downloads<br />Runtime Binary VS90SP1-KB957507-ESN-x86.exe<br />runtime binary, 6516K, uploaded Wed &#8211; 2 downloads<br />Runtime Binary VS90SP1-KB957507-FRA-x86.exe<br />runtime binary, 6576K, uploaded Wed &#8211; 7 downloads<br />Runtime Binary VS90SP1-KB957507-ITA-x86.exe<br />runtime binary, 6486K, uploaded Wed &#8211; 2 downloads<br />Runtime Binary VS90SP1-KB957507-JPN-x86.exe<br />runtime binary, 6723K, uploaded Wed &#8211; 353 downloads<br />Runtime Binary VS90SP1-KB957507-KOR-x86.exe<br />runtime binary, 6453K, uploaded Wed &#8211; 14 downloads</p></blockquote>
<p>日文版的下载量目前居第一，353 downloads</p>
]]></content:encoded>
			<wfw:commentRss>http://yibin.us/archives/6046/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>vs2008代码度量工具</title>
		<link>http://yibin.us/archives/5935</link>
		<comments>http://yibin.us/archives/5935#comments</comments>
		<pubDate>Thu, 24 Apr 2008 09:04:00 +0000</pubDate>
		<dc:creator>幻想曲</dc:creator>
				<category><![CDATA[笔记本子]]></category>
		<category><![CDATA[vs2008]]></category>

		<guid isPermaLink="false">http://www.yibin001.com/?p=5935</guid>
		<description><![CDATA[该工具基本上可检测某一个工程或项目的代码可维护程度。
现有的资源关于该工具的说明少之又少，在博客园上找到一篇译文：
http://www.cnblogs.com/fhmsha/archive/2008/04/08/1142354.html
其中有５个重要的指标：
1、可维护性指数。值越大越好。有三个级别：



图标
级别
范围



高可维护性
在20 到100 之间



中等可维护性
在10 到19 之间



低可维护性
在0 到9 之间



2、圈复杂度
测试分支数量，值越小越好。它由判断点的个数来决定，这里的判断指如if/while/for/foreach等，每出现一次该值就会加1次
3、继承深度。
测量对象继承层次结构的长度，值越小越好。说白了，该值就是指一个类的继承的基数总数。
如public abstract class TemplateBuilder的深度就是1，因为它直接继承于object。
再如： public class VoteTemplateBuilder : TemplateBuilder，它的深度就是2，因为它继承了一个深度为1的基类TemplateBuilder。
4、类耦合。
测量所引用的类的数量，值越小越好。低耦合、高内聚。
5、代码的行数。
这里的行数是指可执行代码的行数，不包括注释、花括号、空白行、成员、属性、类或Namespace声明等。该项值越小越好。
刚对自己做的一个项目做了一个检测。
&#160;

]]></description>
			<content:encoded><![CDATA[<p>该工具基本上可检测某一个工程或项目的代码可维护程度。</p>
<p>现有的资源关于该工具的说明少之又少，在博客园上找到一篇译文：</p>
<p>http://www.cnblogs.com/fhmsha/archive/2008/04/08/1142354.html</p>
<p>其中有５个重要的指标：</p>
<p>1、可维护性指数<span style="background-color: rgb(255, 255, 153);">。值越大越好。</span>有三个级别：</p>
<table width="561" cellspacing="0" cellpadding="2" border="0">
<tbody>
<tr>
<td width="56" valign="top"><strong>图标</strong></td>
<td width="211" valign="top"><strong>级别</strong></td>
<td width="292" valign="top"><strong>范围</strong></td>
</tr>
<tr>
<td width="56" valign="top"><img width="16" height="16" border="0" alt="Green" src="http://blogs.msdn.com/blogfiles/fxcop/WindowsLiveWriter/NewforVisualStudio2008CodeMetrics_D90B/Green_3.png" /></td>
<td width="211" valign="top">高可维护性</td>
<td width="291" valign="top">在20 到100 之间</td>
</tr>
<tr>
<td width="56" valign="top"><img width="16" height="16" border="0" alt="Yellow" src="http://blogs.msdn.com/blogfiles/fxcop/WindowsLiveWriter/NewforVisualStudio2008CodeMetrics_D90B/Yellow_5.png" /></td>
<td width="211" valign="top">中等可维护性</td>
<td width="290" valign="top">在10 到19 之间</td>
</tr>
<tr>
<td width="56" valign="top"><img width="16" height="16" border="0" alt="Red" src="http://blogs.msdn.com/blogfiles/fxcop/WindowsLiveWriter/NewforVisualStudio2008CodeMetrics_D90B/Red_3.png" /></td>
<td width="211" valign="top">低可维护性</td>
<td width="290" valign="top">在0 到9 之间</td>
</tr>
</tbody>
</table>
<p>2、圈复杂度</p>
<p>测试分支数量，<span style="background-color: rgb(255, 255, 0);">值越小越好</span>。它由判断点的个数来决定，这里的判断指如if/while/for/foreach等，每出现一次该值就会加1次</p>
<p>3、继承深度。</p>
<p>测量对象继承层次结构的长度，<span style="background-color: rgb(255, 255, 0);">值越小越好</span>。说白了，该值就是指一个类的继承的基数总数。</p>
<p>如public abstract class TemplateBuilder的深度就是1，因为它直接继承于object。</p>
<p>再如： public class VoteTemplateBuilder : TemplateBuilder，它的深度就是2，因为它继承了一个深度为1的基类TemplateBuilder。</p>
<p>4、类耦合。</p>
<p>测量所引用的类的数量，<span style="background-color: rgb(255, 255, 0);">值越小越好</span>。低耦合、高内聚。</p>
<p>5、代码的行数。</p>
<p>这里的行数是指可执行代码的行数，不包括注释、花括号、空白行、成员、属性、类或Namespace声明等。<span style="background-color: rgb(255, 255, 0);">该项值越小越好</span>。</p>
<p>刚对自己做的一个项目做了一个检测。</p>
<p>&nbsp;</p>
<p><img alt="" src="http//:www.yibin001.com/image.axd?picture=20080424/00000000047.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://yibin.us/archives/5935/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
