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

test-124.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c28d9899d654e4a392a0493a743f3c731ced01df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.Drawing;

namespace N1
{	
	public class D
	{
		public static int Main ()
		{
			Rectangle rect = new Rectangle ();
			N (rect);
			
			return 0;
		}

		public static bool N (RectangleF rect)
		{
			if (rect.X > rect.Y)
				return true;
			
			return false;
		}
	}
}