home *** CD-ROM | disk | FTP | other *** search
- /*+==========================================================================
- File: rothstatics.cs
-
- Summary: Contains a class used to compute Roth IRA eligibility
-
- Classes: CRothStatics
-
- Functions: None
-
- ----------------------------------------------------------------------------
- This file is part of the Microsoft NGWS Samples.
-
- Copyright (C) 1998-1999 Microsoft Corporation. All rights reserved.
- ==========================================================================+*/
- using System;
-
- namespace Samples.Assemblies.Download.Statics
- {
-
- public class CRothStatics
- {
-
- public static String ParticipantName;
- public static int ParticipantFilingStatus;
- public static int ParticipantAGI;
-
- };
- }
-
-
-
-
-
-
-