using System.Collections.Generic;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
[DllImport("shi.dll", EntryPoint = "?HelloWorld@@YAXXZ")]
public static extern int HelloWorld();
public static void Main(string[] args)
Console.WriteLine(HelloWorld());