BelhardTraining.Extensions.DbDataReaderExtensions.GetByte C# (CSharp) 메소드

GetByte() 공개 정적인 메소드

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