Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
1 Posted Topic
[B]The main.[/B] [CODE] namespace DateApp2 { class Program { static void Main(string[] args) { ClsDate objDate = new ClsDate(10, 31, 2011, "10/31/11"); objDate.showDate(); //Console.WriteLine(objDate.ToString()); Console.Read(); } }//Fin cls. } [/CODE] [B]External class.[/B] [CODE] namespace DateApp2 { class ClsDate { #region datamembres private int monthDate; private int dayDate; private int yearDate; …
The End.
Kohai