C# Class PRI.ProductivityExtensions.IDataRecordExtensions.IDataRecordable

Class that contains extension methods that extend IDataRecord
Mostrar archivo Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
GetBytes ( this idatarecord, Int32 i, System.Int64 fieldOffset, Byte buffer ) : System.Int64

Extends GetBytes so that buffer offset of 0 and call to Array.Length are not needed. idatarecord.GetBytes(i, fieldOffset, buffer);

GetChars ( this idatarecord, Int32 i, System.Int64 fieldoffset, Char buffer ) : System.Int64

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. idatarecord.GetChars(i, fieldoffset, buffer);

Method Details

GetBytes() public static method

Extends GetBytes so that buffer offset of 0 and call to Array.Length are not needed. idatarecord.GetBytes(i, fieldOffset, buffer);
public static GetBytes ( this idatarecord, Int32 i, System.Int64 fieldOffset, Byte buffer ) : System.Int64
idatarecord this
i System.Int32
fieldOffset System.Int64
buffer Byte
return System.Int64

GetChars() public static method

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. idatarecord.GetChars(i, fieldoffset, buffer);
public static GetChars ( this idatarecord, Int32 i, System.Int64 fieldoffset, Char buffer ) : System.Int64
idatarecord this
i System.Int32
fieldoffset System.Int64
buffer Char
return System.Int64