Welcome to collectivesolver - Programming & Software Q&A with code examples. A website you can trust. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Powerful WordPress hosting for WordPress professionals

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Aliexpress Today's Best Deals

Teach Your Child To Read

Disclosure: My content contains affiliate links.

28,263 questions

36,905 answers

573 users

How to convert binary to octal in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim str As String = "100111"
        
		Dim num As Integer = Convert.ToInt32(str, 2)
        
		Dim oct As String = Convert.ToString(num, 8)
		
        Console.WriteLine(oct)
    End Sub
End Class




' run:
'
' 47
'

 


Protect Your Privacy - Download VPN


answered Jul 23, 2022 by avibootz

Related questions

1 answer 20 views
20 views asked Jul 24, 2022 by avibootz
1 answer 31 views
1 answer 20 views
20 views asked Jul 23, 2022 by avibootz
2 answers 30 views
1 answer 24 views
24 views asked Dec 27, 2021 by avibootz
...