Saving very Large amount of String (Json string) in Data Table

What is the data type of Data table column for saving large amount of text string ( Note : string contain very big Json)

Hi @PoorGuy,

You need to use StringBuilder for this. When you append to strings, new strings have to be created. The old ones hang around until garbage collection bogging down your system.