Answers for "working with optional parameter c# web api"

C#
0

optional parameter get request c#

public string GetFindBooks(string author="", string title="", string isbn="", string  somethingelse="", DateTime? date= null) 
{
    // ...
}
Posted by: Guest on February-25-2020

Code answers related to "working with optional parameter c# web api"

C# Answers by Framework

Browse Popular Code Answers by Language