如何将DataTable
转换为protobuf,类似于将DataTable
转换为Json的方式。例如,这是转换为JSON的示例代码。无论如何,用DataTable
做protobuf一样吗?
using Newtonsoft.JSON;
public string DataTableToJSONWithJSONNet(DataTable table)
{
string JSONString=string.Empty;
JSONString = JSONConvert.SerializeObject(table);
return JSONString;
}