C# Класс PRI.ProductivityExtensions.SqlCharsExtensions.SqlCharsable

Class that contains extension methods that extend SqlChars
Показать файл Открыть проект

Открытые методы

Метод Описание
Read ( this sqlchars, System.Int64 offset, Char buffer ) : System.Int64

Extends Read so that buffer offset of 0 and call to Array.Length are not needed. sqlchars.Read(offset, buffer);

Write ( this sqlchars, System.Int64 offset, Char buffer ) : void

Extends Write so that buffer offset of 0 and call to Array.Length are not needed. sqlchars.Write(offset, buffer);

Описание методов

Read() публичный статический Метод

Extends Read so that buffer offset of 0 and call to Array.Length are not needed. sqlchars.Read(offset, buffer);
public static Read ( this sqlchars, System.Int64 offset, Char buffer ) : System.Int64
sqlchars this
offset System.Int64
buffer Char
Результат System.Int64

Write() публичный статический Метод

Extends Write so that buffer offset of 0 and call to Array.Length are not needed. sqlchars.Write(offset, buffer);
public static Write ( this sqlchars, System.Int64 offset, Char buffer ) : void
sqlchars this
offset System.Int64
buffer Char
Результат void