将C#的Dic转成Lua的Table&&将C#的List转成Lua的Table

function UIUtils.DicToTable(CSharpDic)
    --将C#的Dic转成Lua的Table
    local dic = {}
    if CSharpDic then
        local iter = CSharpDic:GetEnumerator()
        while iter:MoveNext() do
            local k = iter.Current.Key
            local v = iter.Current.Value
            dic[k] = v
        end
    end
    return dic
end
function UIUtils.ListToTable(CSharpList)
    --将C#的List转成Lua的Table
    local list = {}
    if CSharpList then
        local index = 1
        local iter = CSharpList:GetEnumerator()
        while iter:MoveNext() do
            local v = iter.Current
            list[index] = v
            index = index + 1
        end
    else
        logError("Error,CSharpList is null")
    end
    return list
end

 

你可能感兴趣的:(个人心得)