You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to add customer header name with AddRows function
I have the following class
public class ProductDtoViewModel
{
public string GameName { get; set; }
public string GameItemName { get; set; }
public string BaseCurrency { get; set; }
public decimal Price { get; set; }
public int GameItemID { get; set; }
}
I need to add header value with space to the following in csv
Game Name, Game Item Name, Base Currency, Price, Game Item ID
The text was updated successfully, but these errors were encountered:
How to add customer header name with AddRows function
I have the following class
public class ProductDtoViewModel
{
public string GameName { get; set; }
public string GameItemName { get; set; }
public string BaseCurrency { get; set; }
public decimal Price { get; set; }
public int GameItemID { get; set; }
}
I need to add header value with space to the following in csv
Game Name, Game Item Name, Base Currency, Price, Game Item ID
The text was updated successfully, but these errors were encountered: