Skip to main content

Posts

Showing posts with the label c#

C#: new modifier

Not being a C# programmer myself, it was interesting to find out that it supports a new modifier which can be used to hide a base class member in an subclass. Taking the example from the doc, consider: public class MyBaseC { public int x; public void Invoke() {} } It is possible to have a subclass like this: public class MyDerivedC : MyBaseC { new public void Invoke() {} } Here MyDerivedC.Invoke hides MyBaseC.Invoke rather than override it. Pretty useful construct.

IBiz E-Banking Integrator

The IBiz E-Banking Integrator is a solution from /n software inc. for retrieving live financial data from banks, credit card, and investment companies. It provides components for Open Financial Exchange (OFX) integration. The components provided include: BankStatement - Supports Bank Statement download functions. CreditCardStatement - Supports Credit Card statement download functions. FIProfile - Supports FI Profile functions. InvStatement - Supports Investment Statement Download functions. OFXAggregate - A generic component for parsing and managing XML aggregates produced by other OFX components. Currently there is no support for bill payment or intra-bank communications. Demos of IBiz E-Banking Integrator are included in the download package with code samples in C#, VB and even Java.