KeyValuePair - C#'s generic pair structure.
Dictionary - C#'s map structure.
Regular Expressions in ASP.NET - Since the input for this week's assignment is a little more detailed, I researched the different options you can pass to Regex.
Chapter 1 of The C# Programming Language: Third Edition
Besides brushing up on C#, I'm doing the same thing with Objective-C, and Java. Add to that I come from a strong C++ background. The result has me making too many assumptions with how things work. Reading from the man who created C# with the annotations added by various programmers has been a dream so far. They provide how-tos and describe all the underlying mechanics and/or philosophy behind each topic, which I've really come to appreciate at a higher level of programming. It also serves as a great support to the lecture for anything I may have missed.
Friday, September 25, 2009
Monday, September 21, 2009
Week 2 Reading
This week's reading:
List - Basic containment class. It's allowed to be returned as an IEnumerable if being used in a method.
Image - Image visualization class. Used in a Windows Form to display images in a window.
BitmapSource - A representation of a single image in data form at a set resolution.
Uri - "Uniform Resource Identifier" It gives read-only access to a file at local or URL destination.
CheckBox - Basic CheckBox. Can set dimensions and text. There's a bool check for checking its status. Can be linked to a method for action.
New: Copy of Visual Studio did not contain System.Windows.Controls namespace in the reference package. Instead I had to fool with Forms objects to get the d
Bitmap - An even more basic version of loading a bitmap. Constructor can be called with a string of the filepath.
PictureBox - An image frame that can hold an image like a Bitmap. Similar to Image, but seems to have less functionality.
List - Basic containment class. It's allowed to be returned as an IEnumerable
Image - Image visualization class. Used in a Windows Form to display images in a window.
BitmapSource - A representation of a single image in data form at a set resolution.
Uri - "Uniform Resource Identifier" It gives read-only access to a file at local or URL destination.
CheckBox - Basic CheckBox. Can set dimensions and text. There's a bool check for checking its status. Can be linked to a method for action.
New: Copy of Visual Studio did not contain System.Windows.Controls namespace in the reference package. Instead I had to fool with Forms objects to get the d
Bitmap - An even more basic version of loading a bitmap. Constructor can be called with a string of the filepath.
PictureBox - An image frame that can hold an image like a Bitmap. Similar to Image, but seems to have less functionality.
Monday, September 14, 2009
First week's reading.
For the first week's reading I have read the following:
Chapters 1-9 of C# Precisely (all the way up Classes)
Chapter 15 of C# Precisely (Interfaces)
Chapter 19 of C# Precisely (Exceptions)
Chapter 22 of C# Precisely (I/O)
Regex (C#'s regular expression class system)
IComparable interface
Chapters 1-9 of C# Precisely (all the way up Classes)
Chapter 15 of C# Precisely (Interfaces)
Chapter 19 of C# Precisely (Exceptions)
Chapter 22 of C# Precisely (I/O)
Regex (C#'s regular expression class system)
IComparable interface
Subscribe to:
Comments (Atom)