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

s

parent 5ed251ed
Pipeline #103 canceled with stages
......@@ -43,5 +43,11 @@ namespace myProject
{
}
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