How to create a dynamic object in C Sharp
You can create a new object using new keyword like this.
public object myFunction(){
return new { id = "1234"};
}
How to create a dynamic object in C Sharp
You can create a new object using new keyword like this.
public object myFunction(){
return new { id = "1234"};
}