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 la chaîne de caractères 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(
	string s,
	out Roman result
)
Visual Basic (Declaration)
Public Shared Function TryParse ( _
	s As String, _
	<OutAttribute> ByRef result As Roman _
) As Boolean
Visual C++
public:
static bool TryParse(
	String^ s, 
	[OutAttribute] Roman% result
)

Parameters

s
Type: System..::.String
Chaîne de caractères représentant un nombre romain.
result
Type: Developpez.Dotnet..::.Roman %
Le nombre romain correspondant à la chaîne de caractères.

Return Value

Vrai si la chaîne de caractères représente un nombre romain, faux sinon.

See Also