Tagged Questions
0
votes
0answers
25 views
Authenticating a web service using the constructor. Any better way?
I have a web service that I am trying to simplify the authentication process by implementing authentication in the web service's default constructor.
Currently, all of my web methods have an ...
-5
votes
2answers
107 views
Having trouble with arrays and constructors [closed]
I think I'm missing something very small. I also think I've written probably 95% of the code needed to succeed. The problem is that when I run the program my output is always 0 for each answer. In ...
3
votes
3answers
69 views
Best practice - inherited variables set in derived classes
I have an abstract class containing methods that rely on class-level variables. However, the values of those variables are set in the classes that inherit from the abstract.
I've written this so ...
0
votes
4answers
110 views
Does not contain a constructor that takes 4 arguments?
I'm fairly new to programming and I've been stuck on this question for awhile now, I have searched for an answer to this question throughout the internet but am still stumped as to why it is not ...
2
votes
3answers
81 views
Why I cannot call a parameterized constructor with generics if I specify the base class
If have the following class:
class A
{
public A(int number)
{
}
}
Then why I cannot have a generic class like this one:
class B<ParameterClass> where ParameterClass : A
{
...
0
votes
5answers
233 views
best way to create object
this seems to be very stupid and primary question, but i tried to google it and search it. but cudn't find proper answer for this,
public class Person
{
public string Name { get; set; }
...
0
votes
3answers
93 views
Windows Form constructor does not accept arguments
Why do i get an error while filling the Form values, if the Form object was created with arguments.
Error is Reference to non-shared member needs an object reference.
ParentForm.vb
Public Class ...
2
votes
1answer
94 views
Assigning class value in constructor?
Question: I want to fill in database data into the properties and fields of an instance of a class in its constructor.
public class Profile : ProfileOverview
{
public Profile()
...
0
votes
1answer
48 views
Multiple form constructors in a Form issue
I have this:
public partial class FrmUpload : Form
{
public FrmUpload()
{
InitializeComponent();
}
public FrmUpload(Dictionary<string, string> ft) : base()
{
...
2
votes
3answers
68 views
.NET - Show/hide a method based on constructor used?
Is there a way to hide/show a method if a certain constructor is used? i.e.:
public class SomeClass
{
public SomeClass(string methodA)
{
}
public SomeClass(int methodB)
{
}
...
2
votes
4answers
111 views
How to return a value using constructor in c#?
I follow a convention that,I wont use any print statement in Classes.but I have done a parameter validation in constructors.please tell me how to return that validation which I've done in constructor ...
1
vote
1answer
110 views
Dll does not seem to be read, why?
I am creating a application form to view/change a tag from a software called InTouch.
I added the dll as a reference and I would like to use the Read(string tagName) fct in the IOM.InTouchDataAccess. ...
0
votes
5answers
162 views
How to access the properties in a class from another class
My constructor code in "FileData.cs" file:
public FileData(BatchData batch)
{
this._batch = batch;
}
I want to access the properties from the "FileData.cs" file. So, I used the following code:
...
1
vote
2answers
612 views
Type initialization exception
I created imageHolder class:
public class ImageHolder : Image<Bgr, Byte>
{
private String imagePath;
public ImageHolder(String path):base(path)
{
...
2
votes
3answers
222 views
C# constructor overload + explicit cast = .dll reference missing
Simplified classes are below. Every namespace is in seperate .cproj. I have "B is defined in an assembly that is not referenced" problem when building z.exe.
I added ctor A(string s) because I don't ...
0
votes
3answers
81 views
Some trouble with subclass constructor
Let say I have this example:
class A : SomeAbstractClassWithProperties
{
public A(string id, int size)
{
this.Name = "Name1";
this.Something = new SomethingElse(id, size);
}
...
0
votes
4answers
313 views
Should we set variables to null, false and create new objects when initializing?
I was on the IBM page looking for some filenet example code for .NET and I found this:
namespace CESample
{
// Represents the connection with the Content Engine.
public class CEConnection
...
1
vote
1answer
291 views
Wondering why Static Constructor is not hit in derived class and base class
This is a little sample I was helping myself for understanding constructors working with many scenarios. I am surprised why static constructors in this scene is not being hit at all.
I am well aware ...
1
vote
3answers
74 views
Mutex Constructor in .NET is strange?
I was looking at the Mutex(Boolean, String) page and i'm completely confused. If i pass true how do i check if the mutex is owned by me or now? Then i saw Mutex(Boolean, String, out Boolean) and can ...
0
votes
1answer
62 views
Modifying objects from another class by passing them into a class constructor
I want to pass object to another class in order to modify it and i want changes that i make to it to be propagated to this object in class instance from which it was taken. This should be working with ...
0
votes
3answers
74 views
Easy way to create defaultconstructor if there are many properties in a class?
If I have a class with a lot of properties and I would like to create a constructor with all these properties I have to type a lot. Is there a smarter way in C# 4.0 to do this?
class MyClass {
...
0
votes
3answers
66 views
Can I count properties before I create an object? In the constructor?
can I count the amount of properties in a class before I create an object? Can I do it in the constructor?
class MyClass
{
public string A { get; set; }
public string B { get; set; }
...
0
votes
2answers
120 views
Need to understand C# piece, am I missing something obvious?
Ran across the C# code below (piece 1) - reduced for clarity, it also had instance methods, many more members, etc. Am I missing some very smart programming pattern here or it can be reduced to piece ...
3
votes
5answers
271 views
Calling a constructor from another constructor in the same class
I have a class with two constructors (C#). Here is the code snippet:
public class FooBar()
{
public FooBar(string s)
{
// constructor 1, some functionality
}
public ...
1
vote
1answer
147 views
Base constructor not being called/resolved properly
Background info:
I'm using Microsoft Visual C# 2010 for this project. I want to use a class, System.IO.DirectoryInfo, to get a directory listing. However, the implementation of GetDirectories() ...
0
votes
1answer
220 views
(Iron)Python inheritance constructor issue
So I'm trying to make a subclass of DataGridViewColumn, which has both a no-argument constructor, and a constructor that takes one argument, which expects type DataGridViewCell. This is my class:
...
2
votes
1answer
455 views
Use Constructor in ASPX Page (No Codebehind)
Can I implement a constructor in an ASPX page without a Codebehind file?
I have a page "test.aspx" and I try to include a constructor:
<%@ Page Language="C#" %>
<script runat="server">
...
2
votes
2answers
157 views
Busy constructors in Ioc - are they a code smell?
I have ended up with a constructor that looks like this whilst attempting to end up with an object i can easily test.
public UserProvider(
IFactory<IContainer> containerFactory,
...
4
votes
5answers
238 views
How do I make a constructor only accessible by base class?
If I want a constructor that is only accessible from child classes I can use the protected key word in the constructor.
Now I want the opposite.
My child class should have an constructor that can ...
1
vote
3answers
206 views
Struct with auto-implemented properties and constructor initializer
Recently a compiler warning and (very useful) hint prompted me to write the code below.
I had no idea you could do this, but it is perfectly legal, and also convenient in that I can declare a managed ...
0
votes
1answer
2k views
DataRow and the protected internal constructor
How can a DataTable create a new instance of a DataRow with the NewRow method if the constructor of the DataRow class is protected internal and DataTable doesn't inherit from DataRow?
Example:
class ...
0
votes
1answer
236 views
Multiple Constructor calls using WCF Services
I'm using WCF Services for a project I'm doing, where the Service will query an SQLite Database and return the desired information (Objects)
The problem I'm having is with Constructors and WCF. Is ...
2
votes
4answers
99 views
Public Members vs Constructor of a Class in C#?
I have a doubt.
1. namespace JIMS.ViewModel.Stock
2. {
3. internal class StockGroupViewModel : JIMS.ViewModel.BaseViewModel
4. {
5. JIMSEntities dbContext = new JIMSEntities();
6.
7. ...
2
votes
5answers
82 views
Need Reference to Object For Class CTOR (before Object is built)
See the the ? mark for the question.
public class Person
{
public Int16 ID { get; private set; }
public string Name { get; private set; }
public List<Toy> Toys { get; private set; ...
0
votes
2answers
1k views
C# class without constructor
How is it possible that class in C# may has no constructors defined?
For instance I have a class
internal class TextStyle
{
internal string text = "";
internal Font font = new ...
3
votes
1answer
79 views
Why the order of entering static .ctors is different from instance .ctors in inherited classes?
Why var b = new B() firstly enters static B() .ctor and than static A() .ctor and not vice versa like the instance constructors does (public A() and than public B())?
public class A
{
static A() ...
2
votes
1answer
120 views
Dependency Injection - construction
I want to know if I am on the right track of thought here, I am programming mainly to interfaces so I want to know if the classes below should be injected via DI or should I instantiate a class ...
0
votes
3answers
2k views
VB.NET - Call multiple Constructors
I'm a c# developer and have not enought experience in VB.NET.
the scenario:
Namespace Presenters
Public Class BaseFooPresenter
' assuming the public default parameterless constructor
...
3
votes
4answers
263 views
Automatically implemented property in struct can not be assigned
I have a next code:
struct T
{
public T(int u)
{
this.U = 10; //Errors are here
}
public int U { get; private set; }
}
C# compiler give me a pair of errors in stated ...
1
vote
3answers
428 views
XML Serialization code execution order in constructor - Way to reorder it?
I serialize an XML file into an object using the built-in .NET functionality (XmlSerializer.Deserialize). After the object's fields have been set, I want to act on that data by calling additional code ...
5
votes
8answers
2k views
Why is new String(“Hello”) invalid in C#?
What is the logic/reason behind making
String s= new String("Hello World");
Illegal in C#?
The error is
The best overloaded method match for `string.String(char*)' has some invalid arguments
...
0
votes
6answers
142 views
Constructor chaining
I have following code:
public MapReader(string fName) {
FileName = fName;
}
public MapReader(){
Console.WriteLine("Input valid file name:");
string name = ...
3
votes
3answers
380 views
Ninject and private constructors
We're using Ninject for IOC.
All of our Repository objects can (and should be) mocked for unit testing. I'd like to enforce that all developers code only to interfaces when interacting with ...
2
votes
2answers
75 views
Constructors precedence
I have to build a special class behavior depending of the constructor's argument. Say the Foo drawing should became forever green, if it was build(drawn) with a green pencil.
If any pencil where used, ...
5
votes
3answers
180 views
Garbage collection of C# object declared in constructor
In the following code, I create a DispatcherTimer in the class's constructor. No one keeps reference on it.
In my understanding, the timer should be reclaimed by the garbage collector some time after ...
3
votes
7answers
151 views
Should all my arguments be in the constructor?
I have a class StreamCopyOperation which provides me such things like the average speed of the copy operation and other informations.
Now I have a constructor which looks like
public ...
7
votes
2answers
530 views
How should I chain the constructors in a class hierarchy?
We have the following class hierarchy:
public class Base
{
public Base()
{
// do generic initialization
}
public Base(SomeClass param1) : this()
{
// init ...
8
votes
1answer
105 views
Local event listener called even though object failed to be constructed
In the constructor of an object, Listener, we take an argument and subscribe to one of its events. If an exception is thrown within the constructor after the event is subscribed the ...
71
votes
12answers
4k views
Is there an alternative to bastard injection? (AKA poor man's injection via default constructor)
I most commonly am tempted to use "bastard injection" in a few cases. When I have a "proper" dependency-injection constructor:
public class ThingMaker {
...
public ThingMaker(IThingSource ...
1
vote
1answer
526 views
Constructor cannot call itself c#
Constructor "Delay.vkMessages.vkMessages(string, System.DateTime, string, bool, string)" cannot call itself.I have another class, copy of this class, but it works(I can add code).How I can resolve ...
