Rhythm.Staticize.StaticizeTest.CreateBatchId C# (CSharp) Method

CreateBatchId() public static method

public static CreateBatchId ( ) : string
return string
        public static string CreateBatchId()
        {
            String batchId = String.Format("{0}-{1}", System.DateTime.Now.ToString("yyyyMMddHHmmss"), Guid.NewGuid().ToString().Replace('-', new char()).Substring(0, 6));
            return batchId;
        }