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

cs0618.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94333f5b4fc61ccaf3e9e053568818647e89e457 (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
25
26
27
28
29
30
31
// CS0618: `Name.Feat.Feat(string, string, int, params object[])' is obsolete: `AaA'
// Line: 22
// Compiler options: -warnaserror

using System;

namespace Name
{
	public class A
	{
	}
	
	public class Feat
	{
		#region Constructors

		[Obsolete ("AaA")]
		public Feat(string name, string description, int arg, params object[] featReqs)
		{}

		public Feat(string name, string description)
			: this(name, description, 4)
		{}

		public Feat(string name)
			: this(name, string.Empty)
		{}

		#endregion
	}
}