- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
string[] strArray1 = new string[6];
string[] strArray2 = strArray1;
int index1 = 0;
DateTime now = DateTime.Now;
string str1 = now.Month.ToString();
strArray2[index1] = str1;
string[] strArray3 = strArray1;
int index2 = 1;
now = DateTime.Now;
string str2 = now.Day.ToString();
strArray3[index2] = str2;
string[] strArray4 = strArray1;
int index3 = 2;
now = DateTime.Now;
string str3 = now.Year.ToString();
strArray4[index3] = str3;
string[] strArray5 = strArray1;
int index4 = 3;
now = DateTime.Now;
string str4 = now.Hour.ToString();
strArray5[index4] = str4;
string[] strArray6 = strArray1;
int index5 = 4;
now = DateTime.Now;
string str5 = now.Minute.ToString();
strArray6[index5] = str5;
string[] strArray7 = strArray1;
int index6 = 5;
now = DateTime.Now;
string str6 = now.Second.ToString();
strArray7[index6] = str6;
Program.zipName = string.Concat(strArray1);