Hello my name is Mike I am very new to C# as a language but not new to programming at all. Let me first explain what I am working on. It is a Mortgage Calculator and I am trying to Declare and Create a new data object and I'm not quite sure about the syntax Also I have an Amortization table that I'm trying to create and then retreive the data from. I just basically need to know the syntax on how to do this. Please help me I'm stuck.

data objects
YMaod
what do you mean by data object Do you mean instances of a class (Object Orientation) You simply create a class, with methods/properties/constructor(s) and create an instance of it wherever you want in your project. Example:
MyClass theClass = new MyClass();
theClass.DoSomething(); //example a method called do something in the MyClass
Are you able to explain a bit more