模块 Resolv::SZ

公共实例方法

read_s(key) 点击切换源代码

针对损坏注册表的临时解决方法

# File ext/win32/lib/win32/resolv.rb, line 53
def read_s(key)
  type, str = read(key)
  unless type == Registry::REG_SZ
    warn "Broken registry, #{name}\\#{key} was #{Registry.type2name(type)}, ignored"
    return String.new
  end
  str
end