質問編集履歴
1
不要な引数を削除
title
CHANGED
File without changes
|
body
CHANGED
@@ -33,7 +33,7 @@
|
|
33
33
|
m_psInfo.Arguments = @"c/ " + cmd;
|
34
34
|
}
|
35
35
|
|
36
|
-
private void Process(
|
36
|
+
private void Process()
|
37
37
|
{
|
38
38
|
Process process = new Process();
|
39
39
|
try
|
@@ -59,7 +59,7 @@
|
|
59
59
|
{
|
60
60
|
string cmd = "ipconfig";
|
61
61
|
SetPSInfo(cmd);
|
62
|
-
FtpStart(
|
62
|
+
FtpStart();
|
63
63
|
}
|
64
64
|
```
|
65
65
|
|