Changeset 183
- Timestamp:
- Mar 26, 2007, 6:38:07 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/String.ab
r182 r183 25 25 End Sub 26 26 27 Sub String(initStr As *Byte)27 /* Sub String(initStr As *Byte) 28 28 String() 29 29 Assign(initStr As PCTSTR) 30 End Sub 30 End Sub*/ 31 31 32 32 Sub String(initStr As PCSTR) … … 80 80 End Function 81 81 82 Sub Operator = (ByRef objString As String)82 /* Sub Operator = (ByRef objString As String) 83 83 Assign(objString.Chars, objString.m_Length) 84 84 End Sub … … 94 94 Sub Operator = (text As PCWSTR) 95 95 Assign(text) 96 End Sub 96 End Sub*/ 97 97 98 98 Const Function Operator [] (n As Long) As StrChar … … 116 116 End Sub 117 117 118 Const Function Operator + (text As *Byte) As String118 /* Const Function Operator + (text As *Byte) As String 119 119 Return Concat(text As PCTSTR, lstrlen(text)) 120 End Function 120 End Function*/ 121 121 122 122 Const Function Operator + (text As PCSTR) As String
Note:
See TracChangeset
for help on using the changeset viewer.