blah blah blah is here! blah blah » Close

0
votes
2 answers

backpropagation

Hi I need a back propagation class for this problem: 6 inputs, and one (1) output. I need just the specific class. Does any one knows how to implement a backpropagation class ? Thanks David

0
votes
1 answers

Using class.cs in form application

Hi all I'm trying to learn more about arraylist and how to use class.cs files, and I'm really stucked right now and would appreciate some help from you. I have a win form with 2 textboxes and 2 buttons and a few labels. I enter a surname ...

1
votes
1 answers

total n00b question

I'm learning c# and having some trouble understanding implementation of classes. Below is a simple program i was writing to use classes. it takes your name and age, stores them in a class and displays them. // Namespace Declaration ...

1
votes
1 answers

Copying instance variables to a new class

Suppose I have this class: [code]public class MyClass { public int ID; public string Name; private string Buffer; public string DontCopyThisData; public string GetIDAndName() { return ID.ToString() + ":" + ...

0
votes
1 answers

Creating classes/subclasses

Hi everybody, I am [b]required to find out if the following is a standard practice to create a subclass[/b]. Take for instance, I have to create a class library (ClLib) with 2 classes using Visual Studio: Class1.cs & Class2.cs. ...

0
votes
1 answers

Class Library using keyword problem

Hi everybody. I have this problem that is puzzling me and I am unable to solve it at all. I have two files and they are: [i][/i]ClLib1 [i][/i]ClassLibraryApp1 As the name suggests, the "ClLib1" holds the DLL file, whereas ...

1
votes
2 answers

Class Properties Get/Set and private values.

Codo
84

Here's a quick and hopefully simple question for a more experienced developer. What's the difference between these two pieces of a class? Option 1 [code] private string _myVariable; public string MyVariable { get { return _myVar ...

Feedback