| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676 |
- 2006-01-24 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : reverted the previous change. Looks like it broke
- the build.
- 2006-01-24 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : InternalGetCharCount() optimization: fast path
- for ASCII range.
- 2006-01-24 Atsushi Enomoto <[email protected]>
- * UTF7Encoding.cs UTF8Encoding.cs :
- Fixed bug #77315 (Patch by [email protected]).
- Make strict check for invalid surrogate.
- 2006-01-23 Atsushi Enomoto <[email protected]>
- * EncoderFallbackException.cs EncoderExceptionFallback.cs
- DecoderFallbackBuffer.cs EncoderReplacementFallback.cs
- EncoderFallbackBuffer.cs DecoderExceptionFallbackBuffer.cs
- EncoderFallback.cs DecoderReplacementFallbackBuffer.cs
- DecoderFallbackException.cs DecoderExceptionFallback.cs
- DecoderReplacementFallback.cs EncoderExceptionFallbackBuffer.cs
- EncoderReplacementFallbackBuffer.cs :
- include them in net_2_0bootstrap build.
- 2006-01-20 Atsushi Enomoto <[email protected]>
- * Decoder.cs : ditto.
- 2006-01-20 Atsushi Enomoto <[email protected]>
- * Encoder.cs : Fallback should be initialized to have an instance.
- 2006-01-20 Atsushi Enomoto <[email protected]>
- * Encoding.cs : Cloned instances should not be read-only.
- 2005-12-08 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : (GetChars) let ABCREM work effectively.
- 2005-12-08 Atsushi Enomoto <[email protected]>
- * Encoding.cs : now under 2.0 GetBytes(string,...) dispatches to
- byte*-based GetBytes().
- * UTF8Encoding.cs : avoid extraneous DecoderFallbackBuffer creation
- which came to happen after introducing fallback buffer.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * Encoding.cs, ASCIIEncoding.cs, Latin1Encoding.cs :
- Added IsSingleByte.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * Encoder.cs : added new GetByteCount()/GetBytes() overloads.
- Added FallbackBuffer.
- * Decoder.cs : added new GetCharCount()/GetChars() overloads.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * EncodingInfo.cs : new file.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * UTF32Encoding.cs : Sealed. Added the overload which has
- throwOnInvalid parameter.
- * NormalizationForm.cs : removed [Serializable].
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * Encoding.cs : added UTF32.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * UTF32Encoding.cs : surrogate pairs vanished in GetBytes() when the
- endianness is big.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * UTF32Encoding.cs : new file.
- 2005-11-22 Atsushi Enomoto <[email protected]>
- * ASCIIEncoding.cs, Latin1Encoding.cs : added EncoderFallback support.
- * Encoding.cs : changed default fallback selection. Seems like only
- ASCII and GB18030 uses '?' for replacement.
- * UTF8Encoding.cs : now that Fallback is read only by default, we
- need special setter.
- 2005-11-16 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : safer UTF8Decoder ctor.
- 2005-11-16 Atsushi Enomoto <[email protected]>
- * Decoder.cs : added FallbackBuffer property.
- * UTF8Encoding.cs : In NET_2_0, use DecoderFallbackBuffer instead of
- "throwOnInvalid".
- 2005-11-15 Atsushi Enomoto <[email protected]>
- * DecoderReplacementFallbackBuffer.cs : it does not have to preserve
- byte buffer.
- * EncoderReplacementFallbackBuffer.cs : implemented.
- * DecoderReplacementFallback.cs, EncoderReplacementFallback.cs :
- Removed MonoTODO.
- 2005-11-15 Atsushi Enomoto <[email protected]>
- * DecoderFallbackBuffer.cs : Reset() does nothing here.
- * DecoderReplacementFallbackBuffer.cs : implemented, but no idea how
- bytesUnknown is used.
- 2005-11-15 Atsushi Enomoto <[email protected]>
- * Encoding.cs : added ICloneable, Clone() and new GetEncoding().
- 2005-11-15 Atsushi Enomoto <[email protected]>
- * Encoding.cs : Added IsReadOnly, DecoderFallback and EncoderFallback.
- * Encoder.cs : Added Fallback property.
- * Decoder.cs : Added Fallback property.
- 2005-11-15 Atsushi Enomoto <[email protected]>
- * EncoderFallbackBuffer.cs, EncoderFallback.cs,
- EncoderExceptionFallbackBuffer.cs,
- EncoderReplacementFallbackBuffer.cs,
- EncoderFallbackException.cs,
- EncoderExceptionFallback.cs,
- EncoderReplacementFallback.cs : new files (not actually used yet).
- * DecoderExceptionFallback.cs, DecoderFallbackException.cs,
- DecoderReplacementFallback.cs : [Serializable] and sealed.
- * DecoderReplacementFallbackBuffer.cs : Reset() was missing.
- 2005-11-14 Atsushi Enomoto <[email protected]>
- * DecoderFallbackBuffer.cs, DecoderFallback.cs,
- DecoderExceptionFallbackBuffer.cs,
- DecoderReplacementFallbackBuffer.cs,
- DecoderFallbackException.cs,
- DecoderExceptionFallback.cs,
- DecoderReplacementFallback.cs : new files (not actually used yet).
- 2005-11-14 Miguel de Icaza <[email protected]>
- * ASCIIEncoding.cs, Encoding: Another snack, just a few methods
- missing.
- Also add some checks that were missing.
- 2005-11-11 Sebastien Pouliot <[email protected]>
- * StringBuilder.cs: Fix ISerializable.GetObjectData (remoting tests
- were failing under 2.0) and two possible integer overflow in CopyTo.
- 2005-11-11 Miguel de Icaza <[email protected]>
- * Encoding.cs, UnicodeEncoding.cs: A few 2.x methods.
- * StringBuilder.cs (Text): Added serialization support in 2.x.
- 2005-10-22 Jonathan Pryor <[email protected]>
- * UTF8Encoding.cs (InternalGetChars/InternalGetCharCount): Fix lead byte
- check logic for 6 octet sequences. ((ch & 0xFC) == 0xFC) is always true
- for 0xFF, even though 0xFF isn't a valid lead byte. It should be
- ((ch & 0xFE) == 0xFC).
- 2005-08-25 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : (InternalGetChars/InternalGetCharCount):
- Don't exclude FEFF in the resulting text.
- 2005-06-21 Ben Maurer <[email protected]>
- * StringBuilder.cs (Replace): Do the correct thing when we replace
- with a longer string. Thanks to Alexander Beznozdrev
- <[email protected]>
- 2005-05-26 Ben Maurer <[email protected]>
- * Encoding.cs: Use static object for locking. `volatile' to
- prevent double checked locking error.
- * StringBuilder.cs: Remove = null inits on fields, saves a few
- instructions. When we compare _cached_str == _str, we are only
- interested in pointer based equality, so just do that.
- 2005-05-06 Ben Maurer <[email protected]>
- * StringBuilder.cs (InternalEnsureCapacity): It is possible that
- the size we attempt to grow to is more than the max capacity, but
- that a smaller size will do. In this case, don't throw an
- exception. Fixes #72244
- 2005-04-16 Atsushi Enomoto <[email protected]>
- * NormalizationForm.cs : new file.
- 2005-03-20 Ben Maurer <[email protected]>
- * StringBuilder.cs (set_Length): If we set the length, we must
- clobber the cached string.
- 2005-03-03 Gonzalo Paniagua Javier <[email protected]>
- * UnicodeEncoding.cs: same fix (\uFEFF) but for Unicode. Patch by
- Svetlana Zholkovsky.
- 2005-03-03 Gonzalo Paniagua Javier <[email protected]>
- * UTF7Encoding.cs: fix for characters encoded as a shifted sequence
- whose length is greater than 3. Patch by Svetlana Zholkovsky.
- 2005-01-31 Ben Maurer <[email protected]>
- * StringBuilder.cs (Remove): We need to do the check that the
- string isnt being cached *before* we munge it.
- 2005-01-21 Ben Maurer <[email protected]>
- * StringBuilder.cs: Don't allocate memory on the .ctor, do it
- lazily. This saves us lots of memory if you only use the
- stringbuilder once. Also, we can allocate on the second Append,
- which might reduce the number of buffers allocated.
- 2005-01-14 Lluis Sanches Gual <[email protected]>
- * StringBuilder.cs: Improved parameter check.
- 2005-01-11 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: when creating the StringBuilder from a string, the
- maximum capacity remains Int32.MaxValue.
- 2005-01-10 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: throw if the new size is greater than the maximum
- capacity for the StringBuilder. Patch by [email protected]. Fixes
- bug #62422.
- 2004-12-15 Sebastien Pouliot <[email protected]>
- * UTF7Encoding.cs: Fixed warning for unused variable.
- 2004-09-30 Juraj Skripsky <[email protected]>
- * Encoding.cs: Add encoding name "latin1" for compatibility with
- MS.NET.
- 2004-09-25 Zoltan Varga <[email protected]>
- * StringBuilder.cs (Append): Use InternalStrcpy to append char arrays.
- 2004-09-09 Tim Coleman <[email protected]>
- * StringBuilder.cs: Added AppendLine methods for Fx 2.0
- 2004-06-23 Sebastien Pouliot <[email protected]>
- * UTF7Encoding.cs: Fixed decoding table. Fixed char count calculation.
- Follow the RFC1642 rules for "overbits".
- 2004-06-15 Gert Driesen <[email protected]>
- * ASCIIEncoding.cs: added TODO for serialization
- * StringBuilder.cs: added TODO for serialization
- * UnicodeEncoding.cs: added TODO for serialization
- * UTF7Encoding.cs: added TODO for serialization
- * UTF8Encoding.cs: added TODO for serialization
- 2004-06-10 Gert Driesen <[email protected]>
- * Encoding.cs: Marked protected internal field as internal to
- fix API signature
- 2004-06-07 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : Length check must be done only when the character
- sequence is valid (i.e. should not check when it is overlongs).
- See also TestThrowOnInvalid().
- 2004-06-07 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : Added Overlong check to InternalGetCharCount().
- 2004-06-07 Atsushi Enomoto <[email protected]>
- * UTF8Encoding.cs : Throw overlongs error only when throwOnInvalid is
- true. Otherwise just ignore them.
- 2004-05-26 Sebastien Pouliot <[email protected]>
- * StringBuilder.cs: Fixed potential integer overflows in several
- methods.
- 2004-05-14 Sebastien Pouliot <[email protected]>
- * UTF8Encoding.cs: Moved charCount-- after the check for surrogate
- pair. This fix bug #57009 (and 2 failing unit tests). Added code
- to check for some (like MS) overlongs.
- 2004-05-03 Lluis Sanches Gual <[email protected]>
- * Encoding.cs: Use name const to load I18N assembly.
- 2004-04-25 Andreas Nahr <[email protected]>
- * Encoding.cs: Call shortcut String.ToLowerInvariant
- 2004-04-13 Miguel de Icaza <[email protected]>
- * Encoding.cs: Use new internal codepage setup.
- 2004-04-10 Atsushi Enomoto <[email protected]>
- * UTF7Encoding.cs : GetMaxByteCount() was based on incorrect formula.
- 2004-03-19 Dick Porter <[email protected]>
- * UnicodeEncoding.cs: GetCharCount(), GetChars(): Check for the
- BOM at the beginning of the range of characters we're interested
- in, not at the beginning of the array. Fixes bug 51531.
- 2004-03-10 Juraj Skripsky <[email protected]>
- * StringBuilder.cs
- (Insert int, char[]): fix by using new string(char[]) instead of
- char[].ToString() and simplify.
- (Insert int, string, int): add LAMESPEC note.
- (Insert int char[], int, int): handle value==null according to spec.
- Use a string instead of char array + Array.Copy (gonzalo)
- 2004-03-08 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs:
- (Append (string)): remove redundant check.
- 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs:
- (Remove): fixed offsets when copying and set the new size. Fixes bug
- #53240.
- 2004-01-13 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: added checks for null in a few Append methods.
- Tue Jan 13 22:23:25 CET 2004 Paolo Molaro <[email protected]>
- * StringBuilder.cs: fixed start offset in Append(char).
- 2004-01-12 Patrik Torstensson
- * StringBuilder.cs: new implementation that uses
- string as a buffer instead of a array of chars.
- 2003-12-07 Ben Maurer <[email protected]>
- * UTF8Encoding.cs (GetBytes string): Do not call base
- The version in Encoding will call string.ToCharArray (),
- allocating an extra array. By calling the better method
- in our own class we can save memory.
- 2003-11-17 Ben Maurer <[email protected]>
- * StringBuilder.cs (Insert int, char): It is really silly and
- wasteful to allocate an array here. We can just copy the value
- over.
- 2003-11-11 Miguel de Icaza <[email protected]>
- * Encoding.cs: Use an internal variable to track the parameters of
- each encoder, since the .NET API does not expose virtual methods
- in the child classes, we should not depend on that.
-
- * ASCIIEncoding.cs, UTF7Encoding, UTF8Encoding, UnicodeEncoding:
- Initialize the parameters for base class encoding here.
- 2003-09-01 Miguel de Icaza <[email protected]>
- * Encoding.cs (UTF8Unmarked): make it also not error out on
- invalid input, that is what the Microsoft default is for the
- StreamReader and BinaryReader expect (our main consumers).
- 2003-08-21 Ben Maurer <[email protected]>
- * StringBuilder.cs
- (AppendFormat) Use FormatHelper in System.String to avoid
- allocating an extra StringBuilder.
- (Append string, int, int), (Append char, int): Both were
- allocating extra strings.
- 2003-06-05 Nick Drochak <[email protected]>
- * UTF8Encoding.cs: Cleanups according to class status page
- 2003-05-10 Miguel de Icaza <[email protected]>
- * Encoding.cs (GetEncoding): Add all the aliases documented in the
- framework. We were missing a few.
-
- Reorganize the table. Also, convert the input name into the
- lower-case - to _ before we compare against our table.
-
- 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: fixed bug #41397.
- 2003-04-12 Miguel de Icaza <[email protected]>
- * Encoding.cs: Enabled the code paths that we did have commented
- out, they seem to work now.
- Fri Apr 11 08:29:50 CEST 2003 Paolo Molaro <[email protected]>
- * StringBuilder.cs: cache the result from ToString().
- 2003-03-18 Atsushi Enomoto <[email protected]>
- * UnicodeEncoding.cs: changed WebName from unicodeFFFE to utf-16be.
- (unicodeFFFE is MS compliant, but isn't valid IANA encoding name.)
- 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
- * ASCIIEncoding.cs: fixed bug #38984.
- 2003-03-05 Aleksey Demakov <[email protected]>
- * ASCIIEncoding.cs:
- * Latin1Encoding.cs: fix GetString (byte[]) and
- GetString (byte[], int, int) for zero-length case.
- 2003-02-19 Gonzalo Paniagua Javier <[email protected]>
- * Latin1Encoding.cs: added Serializable attribute.
- 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
- * Encoding.cs: removed UnixConsoleEncoding.
- 2003-01-30 Zoltan Varga <[email protected]>
- * StringBuilder.cs: fix the constructor: 'value' can be NULL,
- 'capacity' must be >=0, use defaultCapacity only if capacity equals 0.
- This fixes the StringBuilder unit tests.
- 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: fixed typo in set_Length.
- 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
- * Encoding.cs: g_get_encoding () returns "ASCII". In Default, when the
- encoding is not found, default to UTF8Unmarked. Removed comment in
- UnixConsoleEncoding, because it's now Default, which gets the
- encoding internally using g_get_encoding ().
- 2002-12-01 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: fixed constructor. Thanks to marcusU for reporting.
- Tue Nov 19 13:03:27 CET 2002 Paolo Molaro <[email protected]>
- * UTF8Encoding.cs: fix GetByteCount (), too.
- 2002-11-19 Miguel de Icaza <[email protected]>
- * UnicodeEncoding.cs: the bytemark should only be used to return
- information in GetPreamble, not to actually encode the information
- on the stream. That is taken care of by the Stream classes.
- * UTF8Encoding.cs: ditto.
- 2002-11-13 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: only move the remaining chars in Remove.
- 2002-11-05 Gonzalo Paniagua Javier <[email protected]>
- * Encoding.cs: unixConsoleEncoding is now the same as Default. Avoid
- locking whenever possible.
- 2002-10-30 Miguel de Icaza <[email protected]>
- * Encoding.cs (UTF8Unmarked): New static property, used to return
- a no-markers UTf8 encoder, used in a few places in the class library.
- 2002-09-06 Miguel de Icaza <[email protected]>
- * Encoding.cs (UTF8, Unicode): Create with a preamble, that is
- what the Microsoft version does.
- (UnixConsoleEncoding): New internal method, used to get the
- encoding, in the future, this should pull the locale, map to
- charset and then code page.
- Wed Sep 4 14:01:25 CEST 2002 Paolo Molaro <[email protected]>
- * Encoding.cs: use icall to get default codepage.
- * DefaultEncoding.cs: remove useless class.
- Mon Aug 26 16:44:54 CEST 2002 Paolo Molaro <[email protected]>
- * *.cs: change to conform to mono coding style.
- 2002-08-24 Gonzalo Paniagua Javier <[email protected]>
- * ASCIIEncoding.cs:
- * Decoder.cs:
- * Encoder.cs:
- * Encoding.cs:
- * UTF7Encoding.cs:
- * UTF8Encoding.cs:
- * UnicodeEncoding.cs: added Serializable attribute.
- 2002-08-24 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: improved performace by using String.InternalCopyTo
- instead of using ToCharArray all over the place (more that 50% of
- speed improvement when using Append).
- Wed Aug 21 20:02:04 CEST 2002 Paolo Molaro <[email protected]>
- * *.cs: imported the code donated by Rhys Weatherley
- <[email protected]>.
- 2002-08-18 Dick Porter <[email protected]>
- * Encoding.cs: Make GetString() return a useful representation of
- the bytes, rather than "System.Char[]"
- 2002-08-03 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: added IndexerName to indexer.
- 2002-08-01 Jason Diamond <[email protected]>
- * Encoding.cs: Use GetByteCount instead of GetMaxByteCount when
- converting chars to bytes.
- 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: updated comments. MaxCapacity always returns
- Int32.MaxValue.
- 2002-06-21 Gonzalo Paniagua Javier <[email protected]>
- * StringBuilder.cs: implemented AppendFormat methods using
- String.Format. Thanks Paolo!
- This makes xsp generate correct C# output in linux :-). I still need
- to do more testing, though.
- Mon Jun 3 12:58:40 CEST 2002 Paolo Molaro <[email protected]>
- * ASCIIEncoding.cs: fixed handling of 0 bytecount.
- 2002-05-19 Martin Baulig <[email protected]>
- * Encoder.cs (IConvEncoder.GetByteCount, IConvEncoder.GetBytes):
- Added exception handling.
- * Decoder.cs (IConvDecoder.GetCharCount, IConvDecoder.GetChars):
- Added exception handling.
- 2002/04/02 Nick Drochak <[email protected]>
- * StringBuilder.cs (Append): Removed obsolete overload.
- 2002-03-21 Mike Kestner <[email protected]>
- * ASCIIEncoding.cs : Fix off by one error in Get(Char|Byte)Count.
- Thu Mar 21 17:38:19 CET 2002 Paolo Molaro <[email protected]>
- * StringBuilder.cs: no need to intern the string returned by ToString().
- 2002-03-17 Mike Kestner <[email protected]>
- * ASCIIEncoding.cs: Implement all the overridden methods. No longer
- dependent on iconv icalls.
- * Encoding.cs: Fix count bugs in GetBytes and GetChars. Add virtual
- to GetBytes.
- Wed Mar 13 00:26:29 CET 2002 Paolo Molaro <[email protected]>
- * StringBuilder.cs: make ToString() return a interned string, this
- seems to be required to make switch on string work.
- Fri Mar 8 17:29:58 CET 2002 Paolo Molaro <[email protected]>
- * StringBuilder.cs: make Append(char) do the smart thing.
- 2002-01-05 Ravi Pratap <[email protected]>
- * ASCIIEncoding.cs, Encoding.cs, UTF7Encoding.cs,
- UnicodeEncoding.cs: MonoTODO attribute marking.
- * StringBuilder.cs : Ditto.
-
- Wed Nov 14 17:05:22 CET 2001 Paolo Molaro <[email protected]>
- * Encoding.cs: renamed some fields.
- * StringBuilder.cs: CLSCompliant updates.
- 2001-10-29 Nick Drochak <[email protected]>
- * StringBuilder.cs: Throw exceptions when constructor paramter(s) are
- invalid. Just like MS does (as best as I can tell).
- Tests for these exceptions are now added to the unit tests as well.
- 2001-10-25 Nick Drochak <[email protected]>
- * StringBuilder.cs: Throw exception if they try to make a StringBuilder
- whose capacity is greater than the MaxCapacity.
- I added some tests for the constructors and the above exception. More
- coming soon.
- 2001-10-23 Nick Drochak <[email protected]>
- * StringBuilder.cs: Refactored constructor code into just one
- constructor. All the other construtors call it. Also supplied missing
- constructors so the class has all those in the spec.
- Added the MaxCapacity property as well, however this needs to be
- completed to return a value is related to the available system memory.
- 2001-10-07 Miguel de Icaza <[email protected]>
- * Encoding.cs, UTF8Encoding.cs, UTF7Encoding.cs, ASCIIEncoding.cs,
- UnicodeEncoding.cs: Corrected API.
- * UTF8Encoding.cs: Checked in changes from Rafael.
- 2001-08-28 Dietmar Maurer <[email protected]>
- * UTF8Encoding.cs: impl. clumsy GetBytes
- 2001-07-16 Marcin Szczepanski <[email protected]>
- * StringBuilder.cs (Text): Fixed.
- * StringBuilderTest.cs: Implement Test suite.
- 2001-07-12 Marcin Szczepanski <[email protected]>
- * StringBuilder.cs: Implemented.
- The only methods left unimplemented are the AppendFormat( ... )
- ones just because it's probably better to wait until some of the
- Format related classes are implemented. I've put that as a TODO
- comment at the top and created the methods with a "nop" body.
- 2001-06-26 Sean MacIsaac <[email protected]>
- * UnicodeEncoding.cs: Members added so that a clean compile is
- possible.
- * ASCIIEncoding.cs: Members added so that a clean compile is
- possible.
- * UTF7Encoding.cs: Members added so that a clean compile is
- possible.
- * UTF8Encoding.cs: Members added so that a clean compile is
- possible.
- * Encoding.cs: All public members included. Most members
- unimplemented.
|