Ignore:
Timestamp:
Feb 28, 2008, 1:39:16 AM (16 years ago)
Author:
イグトランス (egtra)
Message:

Consoleをスレッド安全化(クリティカルセクション使用)。
Exception.HResultをPublicにした。
StringBuilder.Replaceが正しく機能しない問題を解消。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/Classes/System/IO/Exception.ab

    r391 r435  
    6464    */
    6565    Sub ThrowWinIOException(msg As String, error As DWord)
    66 '       Throw IOException(msg, HRESULT_FROM_WIN32(error))
     66        Throw New IOException(msg, HRESULT_FROM_WIN32(error))
    6767    End Sub
    6868
     
    7474    */
    7575    Sub ThrowWinLastErrorIOException(msg As String)
    76 '       Throw IOException(msg, HRESULT_FROM_WIN32(GetLastError()))
     76        Throw New IOException(msg, HRESULT_FROM_WIN32(GetLastError()))
    7777    End Sub
    7878End Namespace
Note: See TracChangeset for help on using the changeset viewer.