Microsoft .NET 面试题与答案
Test your skills through the online practice test: Microsoft .NET Quiz Online Practice Test
问题 46. string is an alias for what?
System.String
这有帮助吗?
添加评论
查看评论
问题 47. Is string Unicode, ASCII, or something else?
Unicode
这有帮助吗?
添加评论
查看评论
问题 48. Strings are immutable, what does this mean?
Any changes to that string are in fact copies.
这有帮助吗?
添加评论
查看评论
问题 49. Name a few string properties.
trim, tolower, toupper, concat, copy, insert, equals, compare.
这有帮助吗?
添加评论
查看评论
问题 50. What is boxing and unboxing?
Converting a value type (stack->heap) to a reference type (heap->stack), and viseversa.
这有帮助吗?
添加评论
查看评论
用户评价最有帮助的内容:
- Name 10 C# keywords.
- What is public accessibility?
- .NET Stands for?
- What is private accessibility?
- What is protected accessibility?