コード例 #1
0
ファイル: Util.cs プロジェクト: SuperYeti/MonoMobile.Views
		public static string GetNewPassword (int passwordLength, bool excludeSpecialCharacters)
		{
			Password pw = new Password (passwordLength);
			pw.ExcludeSymbols = true;
			
			return pw.Generate ();
			
		}
コード例 #2
0
ファイル: Util.cs プロジェクト: SuperYeti/MonoMobile.Views
		public static string GetNewPassword (int passwordLength, string exclusions)
		{
			Password pw = new Password (passwordLength);
			pw.Exclusions = exclusions;
			
			return pw.Generate ();
			
		}