Possible to pass null from Powershell to a .Net API that expects a string?

后端 未结 3 1221
醉梦人生
醉梦人生 2020-12-16 16:50

API:

namespace ClassLibrary1
{
    public class Class1
    {
        public static string Test(string input)
        {
            if (input == null)
                


        
3条回答
提交回复
热议问题