https://github.com/andrerpena/70-483-notes
My notes about the certification MS 70-483
https://github.com/andrerpena/70-483-notes
Last synced: about 1 month ago
JSON representation
My notes about the certification MS 70-483
- Host: GitHub
- URL: https://github.com/andrerpena/70-483-notes
- Owner: andrerpena
- Created: 2016-02-25T23:51:46.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-16T20:26:43.000Z (over 8 years ago)
- Last Synced: 2025-01-30T13:24:35.690Z (3 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
ToString and Parse
- [] What are the various ToString and Parse options for different cultures?
Collections
- What are the most popular .NET collection types? What are the best use case for them?
WebClient
- How does the WebClient method works?
Delegates
- How to declare delegates?
- How to declare lambda expressions?
Regular Expressions
- How do regular expressions work?
- How does compiled regular expressions work? What is the advantage when compared to regular regular expressions?
Events and "multicast delegates"
- How to implement events?
- Are all subscribers called even though one of them raise an exception?
Assemblies
- What is a the "probing option"?
- What is the AssemblyDelaySignAttribute? How to delay sign an assembly?
- How to sign assemblies?
- What is the MethodImpl attribute?
- Study the most common attributes: https://msdn.microsoft.com/en-us/library/z371wyft.aspx?f=255&MSPPError=-2147217396#Global
- What are all the possible ways of adding an Assembly to the GAC?
Locking
- When does it make sense to lock a type instead of an object?
Regular Expressions
- How does compiled regular expressions work?
Serializers
- How to work with the JavaScriptSerializer?
- How to work with the DataContractSerializer?
- What is the difference between the JavaScript serializer and the DataContractSerializer?
- How to work with the XmlSerializer?
Data
- How to use the SqlConnection class?
- How to use the SqlCommand class?
- How to use the SqlDataReader class?
- How to use the TransactionScope class?
Hashing
- How to use the HashAlgorithm class?
Files
- How to use the File class?
- What are all possible ways of reading and writing a file?
- How to lock a file for reading and writing?
Useful interfaces
- IComparable
- IEquatable
Console and Trace
- Study the available methods
Threads
- How to create threads and semaphores?
- How to use Tasks? How to do semaphores using Tasks?
- Async and Await
Generics
- Contravariance vs. Covariance
Iterators
- How to create iterators and the yield return statement?
Indexes
- How to create indexes?
Operator overloading
- How to implement operator overloading?
Windows Event Logging
- How to log events on Windows?
Peformance Counters
- How to do performance counters?
Reflection
- Study all methods of Type, Assembly and PropertyInfo/Member Info
- How to get the current Assembly?