BelhardTraining.Extensions.DbDataReaderExtensions.GetByte C# (CSharp) Méthode

GetByte() public static méthode

public static GetByte ( this reader, string columnName ) : byte
reader this
columnName string
Résultat byte
        public static byte GetByte(this DbDataReader reader, string columnName)
        {
            return reader.GetByte(reader.GetOrdinal("columnName"));
        }