本文介绍了如何清除C#中的RAM数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的先生,
我想获得存储在RAM中的清晰数据,在c#
请帮助我
Dear Sir,
I want to get clear data which is store in RAM,in c#
Please help me
推荐答案
string helloText = "Hello there";
C#将分配内存并存储数据在你的公羊。读取字符串的值将导致从内存中读取值。
在C#中,无法直接访问RAM。
C# will allocate memory and store the data in ram for you. Reading the value of the string will result in reading the value from memory.
In C#, there is no way to access RAM directly.
这篇关于如何清除C#中的RAM数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!