Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 1st, 2005, 03:57 PM
Authorized User
 
Join Date: Jan 2005
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Default C# Overloaded Method argument problem

Is there a file that contains the C# prototypes like in C++? (code below)

When I step through selectedDay(0) the values are as expected, but when selectedDay(3) is called
the argments are passed as (int.Parse(date[0]),int.Parse(date[2]),int.Parse(date[2])) instead of
the declared (int.Parse(date[0]),int.Parse(date[1]),int.Parse(date[2])).

I tried renaming the functions with no change. The selectedDay(3) function orginally contained the
(int.Parse(date[0]),int.Parse(date[2]),int.Parse(date[2])) error, so I am thinking there is some
static data I need to change.

Or is this some other type of problem?


using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Text;
using System.Globalization;
using System.Data.OleDb;


private void Page_Load(object sender, System.EventArgs e){
  if(!Page.IsPostBack){
    selectedDay(DateTime.Today.Year,DateTime.Today.Mon th,DateTime.Today.Day);
  }else{
    selectedDay();
  }
}

public void selectedDay(){
  string day = Request.Form["selectedDate"];
  string [] date = day.Split(',');
  selectedDay(int.Parse(date[0]),int.Parse(date[1]),int.Parse(date[2]));
}

public void selectedDay(int year, int month, int day){
  DateTime selectedDate = new DateTime(year,month,day);
  dayArea.Text=selectedDate.ToString();
}

 
Old January 3rd, 2005, 06:39 PM
Kep Kep is offline
Authorized User
 
Join Date: Aug 2003
Posts: 79
Thanks: 0
Thanked 0 Times in 0 Posts
Default

It looks like you need to re-compile and/or re-distribute your application.

Kep.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Position() Method Problem kwilliams XSLT 3 May 20th, 2008 02:11 PM
What is best method to solve problem VictorVictor ASP.NET 2.0 Basics 5 July 20th, 2006 01:53 PM
How to call C# COM overloaded functions from ASP? khaledriyal C# 0 October 11th, 2005 03:13 AM
Problem with a method? savoym C# 1 January 6th, 2005 09:34 AM
unspecified method problem? nerssi BOOK: Professional Jakarta Struts 0 September 12th, 2004 06:40 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.