22 lines
615 B
C#
22 lines
615 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
|
|
namespace ConsoleApplication
|
|
{
|
|
public class Program
|
|
{
|
|
private static readonly int processId = Process.GetCurrentProcess().Id;
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Started");
|
|
Console.WriteLine($"PID = " + Process.GetCurrentProcess().Id);
|
|
Thread.Sleep(Timeout.Infinite);
|
|
}
|
|
}
|
|
}
|