s = File.stat('\temp')
puts s.readable?
# RubyStatOps.IsReadable should be annotated as instance method, not singleton
puts s.class # => File::Stat
# Ruby class File::Stat extends abstract .NET class FileSystemInfo,
# but FileStatOps.Create method returns either FileInfo or DirectoryInfo
# objects which are considered different Ruby classes. |