Documentation de Dvp.Net. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/

[Ceci est une documentation préliminaire, sous réserve de modification.]

Indique si l'entier représente un nombre romain. Une valeur de retour renvoie ce nombre romain.

Namespace:  Developpez.Dotnet
Assembly:  Developpez.Dotnet (in Developpez.Dotnet.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static bool TryParse(
	int i,
	out Roman result
)
Visual Basic (Declaration)
Public Shared Function TryParse ( _
	i As Integer, _
	<OutAttribute> ByRef result As Roman _
) As Boolean
Visual C++
public:
static bool TryParse(
	int i, 
	[OutAttribute] Roman% result
)

Parameters

i
Type: System..::.Int32
Entier représentant un nombre romain.
result
Type: Developpez.Dotnet..::.Roman %
Le nombre romain correspondant à l'entier.

Return Value

Vrai si l'entier représente un nombre romain, faux sinon.

See Also