C# Interviewfragen und Antworten
Frage 16. What namespaces are necessary to create a localized application?
System.Globalization, System.Resources.
Ist das hilfreich?
Kommentar hinzufugen
Kommentare ansehen
Frage 17. Whats the difference between // comments, /* */ comments and /// comments?
Single-line, multi-line and XML documentation comments.
Ist das hilfreich?
Kommentar hinzufugen
Kommentare ansehen
Frage 18. How do you generate documentation from the C# file commented properly with a command-line compiler?
Compile it with a /doc switch.
Ist das hilfreich?
Kommentar hinzufugen
Kommentare ansehen
Frage 19. Whats the difference between and XML documentation tag?
XML documentation tag?Single line code example and multiple-line code example.
Ist das hilfreich?
Kommentar hinzufugen
Kommentare ansehen
Frage 20. Is XML case-sensitive?
Yes, so
Ist das hilfreich?
Kommentar hinzufugen
Kommentare ansehen
Am hilfreichsten laut Nutzern:
- 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?