GetProbCharString() public method

public GetProbCharString ( Int16 iMaxChar, bool bAbsolute, bool bValidate ) : String
iMaxChar System.Int16
bAbsolute bool
bValidate bool
return String
Example #1
0
File: a.cs Project: ArildF/masters
 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 ));
   }