An open API service indexing awesome lists of open source software.

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

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?