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

CallType.cs « Microsoft.VisualBasic « Microsoft.VisualBasic « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d726be52606760402b27203dca703d13236e291b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// CallType.cs
//
// Author:
//   Chris J Breisch (cjbreisch@altavista.net)
//
// (C) 2002 Chris J Breisch
//
namespace Microsoft.VisualBasic {
	public enum CallType : int {
		Method = 1,
		Get = 2,
		Let = 4,
		Set = 8
	};
}