14 lines
274 B
C#
14 lines
274 B
C#
namespace System
|
|
{
|
|
internal class DiagnosticsProcessStartInfo
|
|
{
|
|
private string v1;
|
|
private string v2;
|
|
|
|
public DiagnosticsProcessStartInfo(string v1, string v2)
|
|
{
|
|
this.v1 = v1;
|
|
this.v2 = v2;
|
|
}
|
|
}
|
|
} |