C# Questions et reponses d'entretien
Question 16. What namespaces are necessary to create a localized application?
System.Globalization, System.Resources.
Est-ce utile ?
Ajouter un commentaire
Voir les commentaires
Question 17. What’s the difference between // comments, /* */ comments and /// comments?
Single-line, multi-line and XML documentation comments.
Est-ce utile ?
Ajouter un commentaire
Voir les commentaires
Question 18. How do you generate documentation from the C# file commented properly with a command-line compiler?
Compile it with a /doc switch.
Est-ce utile ?
Ajouter un commentaire
Voir les commentaires
Question 19. What’s the difference between and XML documentation tag?
XML documentation tag?Single line code example and multiple-line code example.
Est-ce utile ?
Ajouter un commentaire
Voir les commentaires
Question 20. Is XML case-sensitive?
Yes, so
Est-ce utile ?
Ajouter un commentaire
Voir les commentaires
Les plus utiles selon les utilisateurs :
- What’s the advantage of using System.Text.StringBuilder over System.String?
- Can you store multiple data types in System.Array?
- What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
- How can you sort the elements of the array in descending order?
- What’s the .NET datatype that allows the retrieval of data by a unique key?