Search Results

Search found 2 results on 1 pages for 'user32848'.

Page 1/1 | 1 

  • Nested instances in C#

    - by user32848
    I'm trying to translate some C++ code for a neural net into C#. I first took the C++ code, from a 1993 book, and ran it. Then translated it using the STL and it ran again. Now I'm trying to get it into C# with Visual Web Developer 2008 Express. The original code used "friend" classes and I'm just trying to do the same making everything "public". The following code compiles but only gives null references when run: public class ineuron { public Double weight, activation; public ineuron(Double set_wt) { weight = set_wt; } ... public class netwrk { public oneuron onrn; public ineuron in1, in2, in3, in4; public netwrk( Double inp_1, Double inp_2, Double inp_3, Double inp_4 ) { ineuron in1 = new ineuron(inp_1); ineuron in2 = new ineuron(inp_2); ... and later, in some code called by a button push: netwrk ntw = new netwrk(i_n1, i_n2, i_n3, i_n4); Unfortunately, trying to use: ntw.in1.activation etc. leads to null reference runtime errors. What am I forgetting to do? Barney

    Read the article

  • (500) Internal Server Error with C# and Web Dev 2008 Express

    - by user32848
    The code below is generic, found in a variety of places, including a book I have. I have used it as a base for a working program in VS 2005. Now I've resurrected it with my current Visual Web Developer 2008 Express Edition and I seem to have problems connecting it to my default development server (I don't have IIS on my XP). The error is: (500) Internal Server Error. Is this saying what I thought it did (above) or something else, and how do I solve this problem? using System; using System.Collections; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Net; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Text.RegularExpressions; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string strResult = ""; string url = "http://weather.unisys.com"; WebResponse objResponse; WebRequest objRequest; try { objRequest = System.Net.HttpWebRequest.Create(url); } catch { objRequest = System.Net.HttpWebRequest.Create("http://"+ url); } objResponse = objRequest.GetResponse(); using (StreamReader sr = new StreamReader(objResponse.GetResponseStream())) { strResult = sr.ReadToEnd(); sr.Close(); } } }

    Read the article

1