Visual Basic needs more credit
-
It's just not that elegant to have two separate try/catch blocks that completely hide the error and never handle it. And everything you have there can be done in C# as well.
the try catches were not suppose to be illustrated as a bonus, and a laziness on my part, but intentional with how my code works
-
Advertising your other post is spam
No, posting links to unrelated sites or commercial products is spam. Telling a user that you've already replied to their comments in another post on the same site is not. Falsely accusing other members of posting spam, however, would count as abuse. :suss:
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
No, posting links to unrelated sites or commercial products is spam. Telling a user that you've already replied to their comments in another post on the same site is not. Falsely accusing other members of posting spam, however, would count as abuse. :suss:
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
In my defense I got this exact post 3 times without validating you only posted it once
-
VB New image with {.height = height} C# New image {height = height} second one fails
Colborne_Greg wrote:
second one fails
No, it doesn't. https://dotnetfiddle.net/J0N7Mm[^]
using System;
public class Program
{
public static void Main()
{
int height = 100;
var image = new Image { height = height };
Console.WriteLine("The image's height is {0}.", image.height);
}
}public class Image
{
public int height { get; set; }
}Output:
The image's height is 100.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Colborne_Greg wrote:
second one fails
No, it doesn't. https://dotnetfiddle.net/J0N7Mm[^]
using System;
public class Program
{
public static void Main()
{
int height = 100;
var image = new Image { height = height };
Console.WriteLine("The image's height is {0}.", image.height);
}
}public class Image
{
public int height { get; set; }
}Output:
The image's height is 100.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
damn
-
What problem? People with less skill are more focused on getting the job done, then writing cool useless code.
The problem is that "people with less skill" assume that a "ooh shiny" language feature is cool at all.
With
is a PITA - it doesn't improve readability, it obfuscates it slightly and just makes it slightly shorter to type.Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952) Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
-
That's what makes C# better than VB. :-D Try writing an event that returns a value in VB. :cool:
You'll never get very far if all you do is follow instructions.
What's the problem?
Wrong is evil and must be defeated. - Jeff Ello[^]
-
What about that can't be done in C#? :confused:
You'll never get very far if all you do is follow instructions.
Catch End Try Next Catch End Try
End Sub
A rat's tail of different closing elements instead of some simple closing brackets.
The language is JavaScript. that of Mordor, which I will not utter here
I hold an A-7 computer expert classification, Commodore. I'm well acquainted with Dr. Daystrom's theories and discoveries. The basic design of all our ship's computers are JavaScript. -
I think that Visual Basic should be shown off for its beauty and elegance. Here is a sample of what it can do - that no other language can do:
Private Sub AlbumListPopulate()
Try
AlbumsList.ItemsSource = New List(Of Image)For Each AlbumName In Pictures.Albums Try AlbumsList.ItemsSource.Add \_ ( New Image With { .Height = 150, .Width = 150, .Source = RotateStream \_ ( Pictures.Album(AlbumName).Picture, Pictures.Album(AlbumName).Angle ) } ) Catch End Try Next Catch End Try
End Sub
Actually it just got a lot more credit... Swift is Apple's version of VB. :-D
You'll never get very far if all you do is follow instructions.
-
The problem is that "people with less skill" assume that a "ooh shiny" language feature is cool at all.
With
is a PITA - it doesn't improve readability, it obfuscates it slightly and just makes it slightly shorter to type.Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952) Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
My employee cost vs performance says otherwise
-
Actually it just got a lot more credit... Swift is Apple's version of VB. :-D
You'll never get very far if all you do is follow instructions.
Swift looks like C# almost exactly
-
Yes. And I really don't like that Extension Methods require the
using
directive. Very powerful are aliases though. Recently I used an alias to resolve a namespace conflict, rather than havegloball::
scattered throughout some code:namespace PIEBALD.Data.MySql
{
using MySqlClient=global::MySql.Data.MySqlClient ;public sealed class DatabaseInfo : PIEBALD.Data.DatabaseInfo<MySqlClient.MySqlDbType>
You'll never get very far if all you do is follow instructions.
Thank God I don't need SQL anymore. I use Unidex which I wrote in Visual basic ;)
-
Swift looks like C# almost exactly
Of course my comment is tongue-in-cheek, but you must not have looked at Swift hard enough yet.
You'll never get very far if all you do is follow instructions.
-
Catch End Try Next Catch End Try
End Sub
A rat's tail of different closing elements instead of some simple closing brackets.
The language is JavaScript. that of Mordor, which I will not utter here
I hold an A-7 computer expert classification, Commodore. I'm well acquainted with Dr. Daystrom's theories and discoveries. The basic design of all our ship's computers are JavaScript.Visual basic does not have the closing bracket issue that C# has. It makes it easier for people that have less or no skill to be more productive, oh look win for VB.
-
Of course my comment is tongue-in-cheek, but you must not have looked at Swift hard enough yet.
You'll never get very far if all you do is follow instructions.
No I haven't, I've only seen declaring memory and other basic functions which all were the exact same as C#
-
Most of that code is autocompleted also the inside catch is to ensure the loop continues
Colborne_Greg wrote:
also the inside catch is to ensure the loop continues
Now you're swallowing 10.000 exceptions in a loop :laugh: After that a "File Saved Succesfull" dialog and pretend nothing ever happened.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
-
Colborne_Greg wrote:
also the inside catch is to ensure the loop continues
Now you're swallowing 10.000 exceptions in a loop :laugh: After that a "File Saved Succesfull" dialog and pretend nothing ever happened.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
No the problem is when one error exists it kills the loop half way through, this code is only run to display results on the GUI, so not only do I not want it to fail for one error, I don't want it to waste time trying to figure out anything related to that error. I am only unidex the only errors that get through to a client are typos, such as bad filenames
-
Visual basic does not have the closing bracket issue that C# has. It makes it easier for people that have less or no skill to be more productive, oh look win for VB.
Colborne_Greg wrote:
It makes it easier for people that have less or no skill to be more productive
And that's exactly what raises my expectations whenever someone comes with VB.
The language is JavaScript. that of Mordor, which I will not utter here
I hold an A-7 computer expert classification, Commodore. I'm well acquainted with Dr. Daystrom's theories and discoveries. The basic design of all our ship's computers are JavaScript. -
Colborne_Greg wrote:
also the inside catch is to ensure the loop continues
Now you're swallowing 10.000 exceptions in a loop :laugh: After that a "File Saved Succesfull" dialog and pretend nothing ever happened.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
How often I have seen something like that. And then the criminal who wrote this thinks he's being treated unjustly and exclaims something like "But it always has worked!". And then try to explain to Mr. Pointy Hair that this mess only pretended to work at best, fell flat on its face and was more busy covering it up than anything else at worst, and that looking away will not solve anything or save us one single cent.
The language is JavaScript. that of Mordor, which I will not utter here
I hold an A-7 computer expert classification, Commodore. I'm well acquainted with Dr. Daystrom's theories and discoveries. The basic design of all our ship's computers are JavaScript. -
If pictures is null the memory space creates itself and returns a empty album list
I think he is referring to the empty catch, it was my first thought. Oh a new version of resume next :laugh:
Never underestimate the power of human stupidity RAH