void setEncoding(Encoding e);
The function setEncoding() defines a default encoding which will be used when you get or set strings.
In C# you can use any single-byte encoding, see manual for EncodingInfo, Encoding.
{
// your code
dbf.setEncoding(new Encoding(1251));
// your code
}