I want to remove all '\0' characters from the items of an ArrayList in c#. Here is my code:
ArrayList users = um.getAllUsers(server,Instance); //user count=3
So now I want to add a code in order to replase all '\0' with empty string in all the items of the list.
Is this possible?