Hello,

> 
> 
> They should be separated by a newline, I find it strange that it is
> not there, the actual strings is:
> 
> 
> sb.AppendFormat ("{0} {1} = {2}",
> fi.Item1.MemberType.GetSignatureForError (), de.Key, value);
> sb.AppendLine ();
> 


Oh, cool.

I'm using Mono 2.4.4 (the default included in Ubuntu Lucid, the last
Ubuntu version) and there is no new line. The code looks like:

if (error)
    sb.Append (String.Format ("{0} {1} <error reading value>",
TypeManager.CSharpName(fi.FieldType), de.Key));
else
   sb.Append (String.Format ("{0} {1} = {2}",
TypeManager.CSharpName(fi.FieldType), de.Key, value));

There is no AppendLine. This was added in revision 156533.

Thanks Miguel,

Jordi,

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to