Deer Sir,
I want to know something about c#, I have a question that Which program is use to write RAM into reverse system as MAR

Using System.String class will help you...

You can use Array.Reverse() on a char[] array to achieve that.

Here's an example:

string Reverse(string str)
{
   char[] chars = str.ToCharArray();
   Array.Reverse(chars);

   return new String(chars);
}
// Example use

string text = "Some text goes here";

MessageBox.Show(Reverse(text));

Thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.