Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,943 questions

51,884 answers

573 users

How to multiple declaration a class with Partial in VB.NET

1 Answer

0 votes
Imports System
 
Partial Class Example
    Public Sub print_1()
        Console.WriteLine("VB.NET")
    End Sub
End Class
 
Partial Class Example
    Public Sub print_2()
        Console.WriteLine("C#")
    End Sub
End Class
  
Public Class Test
    Public Shared Sub Main()
        Dim o As Example = New Example()
         
        o.print_1()
        o.print_2()
    End Sub
End Class
    
    
    
' Run:
'
' VB.NET
' C#

 



answered Mar 28, 2019 by avibootz
edited Mar 28, 2019 by avibootz
...