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

IntegerType.cs « Microsoft.VisualBasic.CompilerServices « Microsoft.VisualBasic « Microsoft.VisualBasic « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14330f9a3681ec60f1b9a540c56853a76c8cfd5a (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
//
// IntegerType.cs
//
// Author:
//   Chris J Breisch (cjbreisch@altavista.net) 
//
// (C) 2002 Chris J Breisch
//

using System;

namespace Microsoft.VisualBasic.CompilerServices 
{
	[Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
	[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
	sealed public class IntegerType {
		// Declarations
		// Constructors
		// Properties
		// Methods
		public static System.Int32 FromString (System.String Value) { return System.Int32.Parse(Value); }
		[MonoTODO]
		public static System.Int32 FromObject (System.Object Value) { throw new NotImplementedException (); }
		// Events
	};
}