我有这个问题。我今年和去年都有假期。您可以在今年使用去年的假期。因此,举例来说。我距离2013年还有5天,而2014年还有20天。我需要类似PHP的东西。

$holiday = array();
$holiday['2013'] = 5;
$holiday['2014'] = 20;


那么,在C#中还有更好的方法吗?

最佳答案

我认为您正在寻找Dictionary。像下面这样。

Dictionary<int, int> holiday = new Dictionary<int, int>();

holiday[2013] = 5;
holiday[2014] = 20;


如果您将int用作年份而不是PHP代码中的字符串类型,那会更好。

关于c# - Controller 中的C#ASP.NET MVC关联数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21190282/

10-13 02:06