Commit 9e3cdcce authored by 叶海龙's avatar 叶海龙

s

parents 609bfec3 9c68448a
......@@ -39,5 +39,15 @@ namespace myProject
{
}
public void update()
{
}
public void delete1()
{
}
}
}
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace myProject
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
public void GetMessage()
{
return;
}
public void GetStatus()
{
if ("a".Equals("a"))
{
return;
}
}
<<<<<<< HEAD
public void update()
{
}
=======
public void add()
{
}
>>>>>>> m101_bugfix
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment