home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / assemblies / RothIRA / rothstatics / rothstatics.cs < prev   
Encoding:
Text File  |  2000-06-23  |  776 b   |  35 lines

  1. /*+==========================================================================
  2.   File:      rothstatics.cs
  3.  
  4.   Summary:   Contains a class used to compute Roth IRA eligibility
  5.  
  6.   Classes:   CRothStatics
  7.  
  8.   Functions: None
  9.              
  10. ----------------------------------------------------------------------------
  11.   This file is part of the Microsoft NGWS Samples.
  12.  
  13.   Copyright (C) 1998-1999 Microsoft Corporation.  All rights reserved.
  14. ==========================================================================+*/
  15. using System;
  16.  
  17. namespace Samples.Assemblies.Download.Statics
  18. {
  19.  
  20.     public class CRothStatics
  21.     {
  22.  
  23.         public static String ParticipantName;
  24.         public static int ParticipantFilingStatus;
  25.         public static int ParticipantAGI;
  26.  
  27.     };
  28. }
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.