Python转换为C#

时间:2016-11-07 09:33:42

标签: python

我正在尝试将Python转换为C#。有一段我无法理解的python代码。请指教。

KEEP_ALL_HISTORY

// ApplicationName是一些字符串变量。

// CardNumbers是整数的集合。

这是我的问题:

  1. 这里的AppList是什么,是C#中的集合还是某种属性?

  2. AppList.get如何获取2个参数?这里的输出是什么?

1 个答案:

答案 0 :(得分:2)

  

这里的AppList是什么,它是一个集合或某种类似的属性   在C#?

AppList是python中的字典。

  

AppList.get如何获取2个参数?这里的输出是什么?

方法get()返回“ApplicationName.upper()”的值。如果“ApplicationName.upper()”不可用,则返回默认值,即CardNumbers。