17 строки
341 B
C#
17 строки
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.Hpc.Communicators.LinuxCommunicator
|
|
{
|
|
public static class TaskExtensionMethods
|
|
{
|
|
public static void StartAndForget(this Task task)
|
|
{
|
|
// Do nothing
|
|
}
|
|
}
|
|
}
|