Tagged Questions

8
votes
7answers
9k views

“Read only” Property Accessor in C#

I have the following class: class SampleClass { private ArrayList mMyList; SampleClass() { // Initialize mMyList } public ArrayList MyList { get { return mMyList;} ...
5
votes
6answers
549 views

Accessor with different set and get types?

Simple question, hopefully a simple answer: I'd like to do the following: private DateTime m_internalDateTime; public var DateTimeProperty { get { return m_internalDateTime.ToString(); } // ...
4
votes
3answers
1k views

C# set accessor accessible to all types in assembly, and get assessor only to derivated types. How to?

This property in a type with no access modifier (thus internal access): class SomeType { private int length; internal int Length { get { return length; } set length = value; } ...
3
votes
2answers
106 views

Properties without 'property type' in C#

I am converting a Delphi code to a C#. I have a complex classes structure where a class is the main 'trunk' of all its children. In Delphi I can define the private/protected field with a type and ...
1
vote
2answers
113 views

VS 2010 (and publicize.exe) create xxx_accessor.exe instead of .dll

I'm having a strange problem with private accessors and VS2010. Normally, VS and publicize.exe create a xyz_accessor.dll and xyz_accessor.pdb. Unitl yesterday, my VS also did this. But then I built ...
1
vote
4answers
863 views

c# property get,set with different types

I have such an enum and a property. public enum Type { Hourly = 1, Salary = 2, None = 3 }; public string EmployeeType ...
1
vote
2answers
226 views

Method to access/set a session object in C# .net

I currently have the following code: public MyObject SessionStore { get { if (Session["MyData"] == null) Session["MyData"] = new MyObject(); return (MyData) ...
1
vote
2answers
400 views

Serializing private member data

This is not a duplicate of this question. I have to serialize the Property which is "ReadOnly". I can't do anything on this class, because this is "System.Web.Security.MembershipUser" class, of course ...
1
vote
1answer
177 views

Do methods which return Reference Types return references or cloned copy?

I've been learning Java these days and what I've read just is "Be careful not to write accessor methods that return references to mutable objects" which is really interesting. And now I am wondering ...
0
votes
4answers
58 views

Abstract classes and accessors

Main Question: I have a reference type (object/class) where I would like to specify accessors' implementation details, but I don't want the type to be instantiable, only extendible. Abstract Classes ...
0
votes
3answers
191 views

Get-Set Accessor functionality differs on existence of get-set keyword

I'm currently implementing a poor-man's version of the RSA Algorithm and I wanted the prime numbers d, e, m, and n to be read-only as they will be automatically generated within ithe constructor body. ...
0
votes
5answers
285 views

Accessing object property as string and setting its value

I have an object in csharp from the class Account each account have a owner, reference, etc. One way I can access an accounts properties is through accessors like account.Reference; but I would ...
0
votes
10answers
414 views

Best practice: Accessor properties or parameterless methods?

Which is the better practice and why? bool IsTodayMonday { get { return DateTime.Now.DayOfWeek == DayOfWeek.Monday; } } Or bool IsTodayMonday() { return DateTime.Now.DayOfWeek == ...
0
votes
3answers
193 views

In migrating from Java to C# what should I know about accessor classes

I am a Java programming now also writing in C#. I have seen Accessor classes generated by the VS test generating software (to give access from Tests to private members or functions). Should I be ...
-1
votes
4answers
123 views

C#… Not all code paths return a value

I am trying to create a Collection with properties and their respective accessors. Here is my code: class SongCollection : List<Song> { private string playedCount; private int ...