Discover how to display the public information for an assembly. This will allow you to get a complete view of the assemblies you are using or creating.
Articles Written by Jay Miller
.NET Tip: Display All Fields and Properties of an Object
Learn how to display all of the fields and properties of any object. By using a little reflection, you can expose the internals of your objects.
.NET Tip: Passing a Variable Number of Arguments to a Method
Have you ever not known how many parameters a method would need to accept? The C# params keyword lets you pass a variable number of arguments to a method.
.NET Tip: Execute Commands From C#
Have you ever needed to execute a system command from your application? You can accomplish this easily with C#.
.NET Tip: New Features in C# 3�Automatic Properties and Initializers
Take a look at a couple of the language enhancements in C# 3 (VS2008) that can speed up your development and make your code cleaner: automatic properties and initializers.
.NET Tip: Converting Strings to Numbers
Converting strings of digits into numeric data types may not always yield the result you expect. Take a look at three ways to convert a string of digits to an integer and learn what you need to watch out for with each method.
