Everything has to be complicated?!

  • Thread starter Thread starter Hareth
  • Start date Start date
H

Hareth

Why is something as simple as #region diffrent in vb and c#?!
I know they are two totally dif languages, but come on!

vb:
#Region "Title"
#End Region

c#:
#Region Title
#Endregion


They should have made standards in all the platforms
 
I think you answered your own question with this sentence: "I know they are
two totally dif languages, but come on!"

--Brendon
 
Actually, it's this in C#:
#region Title
#endregion

Capitalization for keywords is avoided consistently in C#. In VB, keywords
are capitalized consistently, but VB lets you have type it either way.
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant C++: C# to C++ Converter
Instant J#: VB.NET to J# Converter
 
Back
Top