Results 1 to 2 of 2

Thread: From VB to C#

Hybrid View

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2006
    Posts
    719

    From VB to C#

    how can I add module in C#.net so that i can declare my code just like in VB like these;

    Code:
    Public Sub ShowAllRecords()
    
    End Sub
    Code:
    Public Function GetCustomerName(ByVal CustomerID as Integer) As String
    
    End Function

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    110,299

    Re: From VB to C#

    There's no such thing as a module in C#. In C# you just have classes. In VB, a module member behaves like a class member that is Shared and the C# equivalent of Shared is 'static'. In C# you can declare the class itself static as well as the members, which means that the class cannot be instantiated and every member must be static, just like a VB module. In fact, once compiled, VB modules are implemented as static classes, which is why they don't break the OOP model.

    In VB, while modules do not require you to qualify the method, classes do. Classes are the same in C#.

    That said, judging by the names of those methods, they don't belong in a module or static class anyway.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width