﻿class int System.Int System.Int32
	java int box Integer
	python int
	js Number
	php int
	rust i32

field static int MaxValue
	java Integer.MAX_VALUE
	python 2147483647
	js 2147483647
field static int MinValue
	java Integer.MIN_VALUE
	python -2147483648
	js -2147483648

method string ToString(string)
	java hardcode PrimitiveToString
	js hardcode PrimitiveToString
	python hardcode PrimitiveToString
	php hardcode PrimitiveToString
	rust hardcode PrimitiveToString

method string ToString(NumberFormatInfo)
	java {0}.format({!})

method static int Parse(string) throws FormatException
	java Utils.parseInteger({0}, 0, null)
	python int({0})
	php int({0})
	js Utils.parseInt({0})

method static int Parse(string, NumberStyles, *) throws FormatException
	java Utils.parseInteger({0}, {1}, {2=null})

method static bool TryParse(string, out int)
	java Utils.parseInteger({0}, 0, null, {1})
	python Utils.tryParseInt({0}, {1})
	php Utils::TryParseInt({0}, {1})
	js Utils.tryParseInt({0}, {1})

method static bool TryParse(string, NumberStyles, NumberFormatInfo, out int)
	java Utils.parseInteger({0}, {1}, {2}, {3})
