File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
CSharp.lua/CoreSystem.Lua/CoreSystem/Collections
test/BridgeNetTests/Tests Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -194,6 +194,12 @@ local DictionaryCollection = define("System.Collections.Generic.DictionaryCollec
194194 getCount = function (this )
195195 return getCount (this .dict )
196196 end ,
197+ Contains = function (this , v )
198+ if this .kind == 2 then
199+ return this .dict :ContainsValue (v )
200+ end
201+ return this .dict :ContainsKey (v )
202+ end ,
197203 GetEnumerator = function (this )
198204 return dictionaryEnumerator (this .dict , this .kind )
199205 end
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ local function out(module)
99end
1010
1111local function lib (module )
12- return (" ../%s/bin/Debug/net6 .0/%s.dll!" ):format (module , module )
12+ return (" ../%s/bin/Debug/net9 .0/%s.dll!" ):format (module , module )
1313end
1414
1515local function libs (...)
6161 metadata = true ,
6262 module = true
6363 },
64- }
64+ }
You can’t perform that action at this time.
0 commit comments