Which of the following statements is false in relation to following method? static byte[] GetBytes(string str) { byte[] bytes = new byte[str.Length * sizeof(char)]; System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length); return bytes; }
Correct Answer: None of these.
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions