How to get the size of Structure in bytes with VB.NET

2 Answers

0 votes
Imports System
Imports System.Runtime.InteropServices

Structure ExampleStructure
    Public a As Integer ' 4 bytes
    Public b As Double  ' 8 bytes 
End Structure

Public Class Program
    Public Shared Sub Main(ByVal args() As String)
        Dim sizeOfStructure As Integer = Marshal.SizeOf(GetType(ExampleStructure))

        Console.WriteLine(sizeOfStructure)
    End Sub
End Class




' run:
'
' 16
'

 



answered Apr 6, 2024 by avibootz
0 votes
Imports System
Imports System.Runtime.InteropServices

Structure ExampleStructure
    Public a As Integer ' 4 bytes
    Public b As Short   ' 2 bytes 
    Public c As String  ' Depends on implementing platform
End Structure

Public Class Program
    Public Shared Sub Main(ByVal args() As String)
        Dim sizeOfStructure As Integer = Marshal.SizeOf(GetType(ExampleStructure))

        Console.WriteLine(sizeOfStructure)
    End Sub
End Class




' run:
'
' 16
'

 



answered Apr 6, 2024 by avibootz

Related questions

1 answer 203 views
203 views asked Oct 22, 2018 by avibootz
1 answer 118 views
2 answers 159 views
1 answer 267 views
...