作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
在下面的代码中,在 foreach 循环中使用 var 会破坏代码。这是为什么?
using System;
using System.ComponentModel;
namespace ConsoleApplication1
{
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public Guid Ssn { get; set; }
}
internal class Program
{
private static void Main(string[] args)
{
var foo = new Person {Name = "Foo", Age = 99, Ssn = Guid.NewGuid()};
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(foo);
foreach (PropertyDescriptor property in properties)
{
Console.WriteLine(property.Name);//Works
}
//foreach (var property in properties)
//{
// Console.WriteLine(property.Name);//Does not work
//}
}
}
}
我是一名优秀的程序员,十分优秀!