fix enum float value in C#, minor format fix in doc (#5726)

This commit is contained in:
wing328
2017-05-29 22:16:42 +08:00
committed by GitHub
parent 3df5b6f303
commit b84769d1e3
34 changed files with 1508 additions and 116 deletions

View File

@@ -36,7 +36,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var body = new User(); // User | Created user object
@@ -97,7 +96,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var body = new List<User>(); // List<User> | List of user object
@@ -158,7 +156,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var body = new List<User>(); // List<User> | List of user object
@@ -219,7 +216,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var username = username_example; // string | The name that needs to be deleted
@@ -280,7 +276,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var username = username_example; // string | The name that needs to be fetched. Use user1 for testing.
@@ -342,7 +337,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var username = username_example; // string | The user name for login
var password = password_example; // string | The password for login in clear text
@@ -406,7 +400,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
try
@@ -463,7 +456,6 @@ namespace Example
{
public void main()
{
var apiInstance = new UserApi();
var username = username_example; // string | name that need to be deleted
var body = new User(); // User | Updated user object