help-source-highlight
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-source-highlight] C-sharp; number of double type highlighting


From: HEMMI, Shigeru
Subject: [Help-source-highlight] C-sharp; number of double type highlighting
Date: Mon, 24 Apr 2006 15:10:20 +0900

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);
  }
}
}

reply via email to

[Prev in Thread] Current Thread [Next in Thread]