Skip to main content

Posts

Showing posts with the label To generate an alphanumeric Random code

Generate an alphanumeric Random Code, C#

        To generate an alphanumeric Random code          ///         /// Public static function Generate Random Code         /// generate the random code         /// Created By:   Munesh         /// Created Date: Feb 10, 2010         ///         /// string          public static string GenerateRandomCode()         {             int _minLength = 6, _maxLength = 6;             string _charsLCase = "abcdefgijkmnopqrstwxyz";             string _charsUC...