Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-358.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8ebbf60ca72fb6922ada9afac7ba99acd1f0a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

public class Test
{
        public static void Main ()
        {
        double d = 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000222;
        Console.Out.WriteLine (d.ToString ("R"));
        Console.Out.WriteLine (d.ToString ());
        }
}