C# 면접 질문과 답변
Ques 16. What namespaces are necessary to create a localized application?
System.Globalization, System.Resources.
도움이 되었나요?
Add Comment
View Comments
Ques 17. Whats the difference between // comments, /* */ comments and /// comments?
Single-line, multi-line and XML documentation comments.
도움이 되었나요?
Add Comment
View Comments
Ques 18. How do you generate documentation from the C# file commented properly with a command-line compiler?
Compile it with a /doc switch.
도움이 되었나요?
Add Comment
View Comments
Ques 19. Whats the difference between and XML documentation tag?
XML documentation tag?Single line code example and multiple-line code example.
도움이 되었나요?
Add Comment
View Comments
Ques 20. Is XML case-sensitive?
Yes, so
도움이 되었나요?
Add Comment
View Comments
Most helpful rated by users:
- Whats the advantage of using System.Text.StringBuilder over System.String?
- Can you store multiple data types in System.Array?
- Whats the difference between the System.Array.CopyTo() and System.Array.Clone()?
- How can you sort the elements of the array in descending order?
- Whats the .NET datatype that allows the retrieval of data by a unique key?