小弟初学C#,在看Visual C#2005入门经典这本书,在看到示例中判断文件属性的以下语句时,有点迷糊:stbProperties.Append("ReadOnly: ");
stbProperties.Append(Convert.ToBoolean((fileAttributes & System.IO.FileAttributes.ReadOnly)
                        == System.IO.FileAttributes.ReadOnly));
stbProperties.Append("\r\n");请各位老大详细解释第2句Convert.ToBoolean((fileAttributes & System.IO.FileAttributes.ReadOnly)
                        == System.IO.FileAttributes.ReadOnly)不胜感激,谢谢!