GetTop20String() public méthode

public GetTop20String ( Int16 iMaxChar, bool bAbsolute, bool bValidate ) : String
iMaxChar System.Int16
bAbsolute bool
bValidate bool
Résultat String
Exemple #1
0
 public static void Main()
   {
   IntlStrings intl = new IntlStrings( 0x41F );
   Console.WriteLine(intl.GetRandomDirectoryName( 5 ));
   for(int iLoop = 0 ; iLoop < 5 ; iLoop++)
     Console.WriteLine( intl.GetTop20String( 20, true, true ));
   for(int iLoop = 0 ; iLoop < 5 ; iLoop++)
     Console.WriteLine( intl.GetProbCharString( 20, true, true ));
   }