File tree Expand file tree Collapse file tree 5 files changed +9
-0
lines changed
Provider/src/FirebirdSql.Data.FirebirdClient Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1616//$Authors = Carlos Guzman Alvarez, Jiri Cincura (jiri@cincura.net)
1717
1818using System ;
19+ using System . Runtime . InteropServices ;
1920
2021namespace FirebirdSql . Data . Common
2122{
23+ [ StructLayout ( LayoutKind . Auto ) ]
2224 internal struct ArrayBound
2325 {
2426 public int LowerBound { get ; set ; }
Original file line number Diff line number Diff line change 2020
2121namespace FirebirdSql . Data . Common
2222{
23+ [ StructLayout ( LayoutKind . Auto ) ]
2324 internal struct ArrayDesc
2425 {
2526 public byte DataType { get ; set ; }
Original file line number Diff line number Diff line change 1818using System ;
1919using System . Globalization ;
2020using System . Numerics ;
21+ using System . Runtime . InteropServices ;
2122using FirebirdSql . Data . Common ;
2223
2324namespace FirebirdSql . Data . Types
2425{
26+ [ StructLayout ( LayoutKind . Auto ) ]
2527 public readonly struct FbDecFloat : IEquatable < FbDecFloat >
2628 {
2729 internal DecimalType Type { get ; }
Original file line number Diff line number Diff line change 1616//$Authors = Jiri Cincura (jiri@cincura.net)
1717
1818using System ;
19+ using System . Runtime . InteropServices ;
1920
2021namespace FirebirdSql . Data . Types
2122{
23+ [ StructLayout ( LayoutKind . Auto ) ]
2224 public readonly struct FbZonedDateTime : IEquatable < FbZonedDateTime >
2325 {
2426 public DateTime DateTime { get ; }
Original file line number Diff line number Diff line change 1616//$Authors = Jiri Cincura (jiri@cincura.net)
1717
1818using System ;
19+ using System . Runtime . InteropServices ;
1920
2021namespace FirebirdSql . Data . Types
2122{
23+ [ StructLayout ( LayoutKind . Auto ) ]
2224 public readonly struct FbZonedTime : IEquatable < FbZonedTime >
2325 {
2426 public TimeSpan Time { get ; }
You can’t perform that action at this time.
0 commit comments