Strict Standards: Declaration of Walker_Page::start_lvl() should be compatible with Walker::start_lvl(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 576

Strict Standards: Declaration of Walker_Page::end_lvl() should be compatible with Walker::end_lvl(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 576

Strict Standards: Declaration of Walker_Page::start_el() should be compatible with Walker::start_el(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 576

Strict Standards: Declaration of Walker_Page::end_el() should be compatible with Walker::end_el(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 576

Strict Standards: Declaration of Walker_PageDropdown::start_el() should be compatible with Walker::start_el(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 593

Strict Standards: Declaration of Walker_Category::start_lvl() should be compatible with Walker::start_lvl(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 687

Strict Standards: Declaration of Walker_Category::end_lvl() should be compatible with Walker::end_lvl(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 687

Strict Standards: Declaration of Walker_Category::start_el() should be compatible with Walker::start_el(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 687

Strict Standards: Declaration of Walker_Category::end_el() should be compatible with Walker::end_el(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 687

Strict Standards: Declaration of Walker_CategoryDropdown::start_el() should be compatible with Walker::start_el(&$output) in /home/iamkevin/www/www/journal/wp-includes/classes.php on line 710

Strict Standards: Redefining already defined constructor for class wpdb in /home/iamkevin/www/www/journal/wp-includes/wp-db.php on line 58

Deprecated: Assigning the return value of new by reference is deprecated in /home/iamkevin/www/www/journal/wp-includes/cache.php on line 99

Strict Standards: Redefining already defined constructor for class WP_Object_Cache in /home/iamkevin/www/www/journal/wp-includes/cache.php on line 404

Deprecated: Assigning the return value of new by reference is deprecated in /home/iamkevin/www/www/journal/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/iamkevin/www/www/journal/wp-includes/theme.php on line 576
iam(still)kevin. » Blog Archive » Damn you VB.net!!!!

Damn you VB.net!!!!

In general, while i really don’t like programming in VB.net, when i have to i’m relatively ok with it, minus a little bitching just on principle. Mostly it’s just confusing because its syntax is like no normal programming language. But today I found out how to declare an array, and it is retarded.
In c and c++ you would do:
int numberArray[10];
and in c#, it’s essentially the same:
int[10] numberArray;
But in the wonderful VB:
dim numberArray(9) as Int32

Ignoring the annoying “dim name as type” syntax, you declare the array based on the highest index in the array, not based on the size of the array. That’s just so weird and non-intuitive.

Leave a Reply