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

cs0029.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f701c4e08500827e052be8dfc02b4cf240b4378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0029: cannot implicitly conver type `double' to `decimal'
// Line: 7

class T {
	public static int Main (string [] args)
	{
		decimal d = 100d;

		return 1;
	}
}