在这里记录一下,自己的复习所得,有大概一个月没有碰这些东西了,忘的很干净,今天要在C#中集成boo的环境中写点boo的代码,结果一写一个错,在这里记录一下,
如何在boo中使用静态变量
boo版
Code
如何在boo中做条件判断,刚开始这里写好几遍布都错了,python中是or不是C#中的||
Code
namespace test
import System
import System.Collections
ht = Hashtable()
ht.Add( " 11 " , " ddd " )
print ht
print ht[ " 11 " ]
import System
import System.Collections
ht = Hashtable()
ht.Add( " 11 " , " ddd " )
print ht
print ht[ " 11 " ]
本文参考链接:https://www.cnblogs.com/lexus/archive/2008/08/30/1280305.html