Hi I am returning an array of struct from my webservice. Is there a way to bind that array of struct to DataGrid. I am using C#. Following is my struct.
[CODE=C#]//Struct to be sent
public struct UserDataSent
{
public string userID , fName , lName , IMO , status, businessAddress , city, state, zip, telephoneNumber , mail;
}[/CODE]
[CODE=C#]//Struct to be sent
public struct UserDataSent
{
public string userID , fName , lName , IMO , status, businessAddress , city, state, zip, telephoneNumber , mail;
}[/CODE]
Comment