コード例 #1
0
        public AssemblyOSRow CreateAssemblyOSRow(uint _oSPlatformID, uint _oSMajorVersion, uint _oSMinorVersion)
        {
            AssemblyOSRow row = new AssemblyOSRow();

            row.OSPlatformID   = _oSPlatformID;
            row.OSMajorVersion = _oSMajorVersion;
            row.OSMinorVersion = _oSMinorVersion;
            return(row);
        }
コード例 #2
0
 public override void VisitAssemblyOSRow(AssemblyOSRow row)
 {
     row.OSPlatformID   = m_binaryReader.ReadUInt32();
     row.OSMajorVersion = m_binaryReader.ReadUInt32();
     row.OSMinorVersion = m_binaryReader.ReadUInt32();
 }
コード例 #3
0
 public override void VisitAssemblyOSRow(AssemblyOSRow row)
 {
     m_binaryWriter.Write(row.OSPlatformID);
     m_binaryWriter.Write(row.OSMajorVersion);
     m_binaryWriter.Write(row.OSMinorVersion);
 }