What is the maximum possible length of a .NET string?

后端 未结 8 1668
梦毁少年i
梦毁少年i 2020-11-22 02:48

What is the longest string that can be created in .NET? The docs for the String class are silent on this question as far as I can see, so an authoritative answe

8条回答
  •  遇见更好的自我
    2020-11-22 03:29

    String allocates dynamic memory size in the heap of your RAM. But string address is stored in stack that occupies 4 bytes of memory.

提交回复
热议问题