Possible Duplicate:
.NET / C# - Convert char[] to string
When I try to call .ToString() on my char[] I expect a string to be created of the values in the char[]. Instead I get "char[]" as a string, the type, which is not what I want. What am I missing here?
In Java .toString() on a char[] prints the values from a char[] as a string.
Thanks