Encog.Util.HTTP.FormUtility.RandomString C# (CSharp) Method

RandomString() protected static method

Generate a random string, of a specified length. This is used to generate the multipart boundary.
protected static RandomString ( ) : String
return String
        protected static String RandomString()
        {
            return "" + ThreadSafeRandom.NextDouble();
        }