Changeset 400 for trunk/Include/Classes/ActiveBasic/Core
- Timestamp:
- Jan 22, 2008, 9:19:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/Classes/ActiveBasic/Core/TypeInfo.ab
r367 r400 160 160 161 161 Static Sub InitializeValueType() 162 types = New System.Collections.Generic.Dictionary<String, TypeBaseImpl>(819 2)162 types = New System.Collections.Generic.Dictionary<String, TypeBaseImpl>(8191) 163 163 164 164 ' 値型の追加 … … 222 222 End If 223 223 224 If Object.ReferenceEquals( types.Item(fullName), Nothing ) Then 225 OutputDebugString( "TypeSearch Failed: " ) 226 OutputDebugString( fullName ) 227 OutputDebugString( Ex"\r\n" ) 224 Search = types.Item(fullName) 225 226 If Object.ReferenceEquals( Search, Nothing ) Then 227 OutputDebugString("TypeSearch Failed: ") 228 If Not ActiveBasic.IsNothing(fullName) Then 229 OutputDebugStringW(StrPtr(fullName) As PWSTR) 230 OutputDebugString(Ex"\r\n") 231 OutputDebugStringA(StrPtr(fullName) As PSTR) 232 End If 233 OutputDebugString(Ex"\r\n") 228 234 End If 229 230 Return types.Item(fullName)231 235 End Function 232 236
Note:
See TracChangeset
for help on using the changeset viewer.