I am getting XML from sql server and i am able to deserialize it with proper Human class.
public class Human
{
public string name {get;set;}
}
after giving value for name property i want to serialize it with different root name, because i want to deserialize it again with new class name
public class Boy
{
public string name {get;set;}
}
please give a solution