Hello,

I encounterd a small problem for a C-sharp source,
----------------------------------------------------------------------------
namespace Foo
{
using System;
public class Foo
{
  public double one=1.0d;
  public double fr4=0.25d;
}
class testing
{
  public static void Main()
  {
    Foo x = new Foo();
      Console.WriteLine("one,fr4="+x.one+", "+x.fr4);
  }
}
}
----------------------------------------------------------------------------
Hilighting 1.0d and 0.25d seems a bit wrong.

Regards,
namespace Foo
{
using System;
public class Foo
{
  public double one=1.0d;
  public double fr4=0.25d;
}
class testing
{
  public static void Main()
  {
    Foo x = new Foo();
      Console.WriteLine("one,fr4="+x.one+", "+x.fr4);
  }
}
}
_______________________________________________
Help-source-highlight mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-source-highlight

Reply via email to