Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

166
votes
21answers
17k views

What is the difference between const and readonly?

What is the difference between const and readonly and do you use one over the other?
53
votes
10answers
24k views

In a django form, How to make a field readonly (or disabled) so that it cannot be edited?

In a django form, how do I make a field read-only (or disabled)? When the form is being used to create a new entry, all fields should be enabled - but when the record is in update mode some fields ...
48
votes
11answers
11k views

Is there a read-only generic dictionary available in .NET?

I'm returning a reference to a dictionary in my read only property. How do I prevent consumers from changing my data? If this were an IList I could simply return it AsReadOnly. Is there something ...
40
votes
4answers
2k views

Why isn't String.Empty a constant?

In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
27
votes
5answers
5k views

C# and immutability and readonly fields… a lie?

I have found that People claim that using all readonly fields in a class does not necessarily make that class's instance immutable because there are "ways" to change the readonly field values even ...
26
votes
5answers
6k views

Can I change a private readonly field in C# using reflection?

I am wondering, since a lot of things can be done using reflection, can I change a private readonly field after the constructor completed its execution? (note: just curiosity) public class Foo { ...
22
votes
7answers
3k views

What are the benefits to marking a field as `readonly` in C#?

What are the benefits of having a member variable declared as read only? Is it just protecting against someone changing during the lifecycle of the class or are there any compiler speed improvements ...
21
votes
5answers
7k views

OneWayToSource binding from readonly property in Xaml

I'm trying to bind to a Readonly property with OneWayToSource as mode, but it seems this cannot be done in XAML: <controls:FlagThingy IsModified="{Binding FlagIsModified, ...
20
votes
4answers
4k views

Pushing read-only GUI properties back into ViewModel

I want to write a ViewModel that always knows the current state of some read-only dependency properties from the View. Specifically, my GUI contains a FlowDocumentPageViewer, which displays one page ...
18
votes
7answers
932 views

Read/Write Python Closures

Closures are an incredibly useful language feature. They let us do clever things that would otherwise take a lot of code, and often enable us to write code that is more elegant and more clear. In ...
16
votes
6answers
4k views

C#: Can parameters be constant?

I'm looking for the C# equivalent of Java's final. Does it exist? Does C# have anything like the following: public Foo(final int bar); In the above example, bar is a read only variable and cannot ...
16
votes
11answers
7k views

Why can't radio buttons be “readonly”?

I would like to show a radio button, have its value submitted, but depending on the circumstances, have it not editable. Disabled doesn't work, because it doesn't submit th value (or does it?), and it ...
15
votes
2answers
2k views

Github: readonly access to a private repo

I am developing some private projects on Github, and I would like to add nightly cronjobs to my deployments servers to pull the latest version from github. I am currently doing this by generating ...
14
votes
5answers
1k views

Is read-only auto-implemented property possible?

I found a topic on MSDN that talks that yes, this is possible. I did a test that seems to break this statement: using System; namespace Test { class Program { static void ...
14
votes
4answers
30k views

Html.TextBox conditional attribute with ASP.NET MVC Preview 5

I have a strongly-typed MVC View Control which is responsible for the UI where users can create and edit Client items. I'd like them to be able to define the ClientId on creation, but not edit, and ...
13
votes
4answers
435 views

How can a readonly static field be null?

So here's an excerpt from one of my classes: [ThreadStatic] readonly static private AccountManager _instance = new AccountManager(); private AccountManager() { } static ...
13
votes
4answers
6k views

WCF: Exposing readonly DataMember properties without set?

I have a server side class which I make available on the client side through a [DataContract]. This class has a readonly field which I'd like to make available through a property. However, I'm unable ...
13
votes
8answers
5k views

Is there a difference between private const and private readonly variables in C#?

Is there a difference between having a private const variable or a private static readonly variable in C# (other than having to assign the const a compile-time expression)? Since they are both ...
12
votes
5answers
2k views

Is Core Data useful for readonly data too?

I'm creating an iPhone App and am wondering whether Core Data is better for readonly data than a SQLite database. It feels like the SQLite DB is the better choice, is that right? Can I even pre-fill ...
11
votes
2answers
631 views

Setting a control to readonly using jquery 1.6 .prop()

With the release of jQuery 1.6, the recommendation on SO has been to generally start using prop() where you used to use attr(). What happens when I want make an element readonly? ...
11
votes
5answers
486 views

Is there any benefit to making a C# field read-only if its appropriate?

I am working on a project using ReSharper. On occasion it prompts me that a field can be made readonly. Is there any performance or other benefit to this? I am presuming the benefits would be quite ...
11
votes
6answers
6k views

Declaring a const double[] in C#?

I have several constants that I use, and my plan was to put them in a const array of doubles, however the compiler won't let me. I have tried declaring it this way: const double[] arr = {1, 2, 3, 4, ...
11
votes
4answers
3k views

C# return a variable as read only from get; set;

I swear I have seen an example of this but have been googling for a bit and can not find it. I have a class that has a reference to an object and need to have a GET; method for it. My problem is ...
11
votes
3answers
821 views

Is there any run-time overhead to readonly?

For some reason, I've always assumed that readonly fields have overhead associated with them, which I thought of as the CLR keeping track of whether or not a readonly field has been initialized or ...
10
votes
5answers
2k views

What's the best way of creating a readonly array in C#?

I've got the extremely unlikely and original situation of wanting to return a readonly array from my property. So far I'm only aware of one way of doing it - through the ...
9
votes
4answers
4k views

Readonly Properties in Objective-C?

I have declared a readonly property in my interface as such: @property (readonly, nonatomic, copy) NSString* eventDomain; Maybe I'm misunderstanding properties, but I thought that when you declare ...
9
votes
3answers
370 views

Why is there no IArray(T) interface in .NET?

Update 2011-Jan-06: Believe it or not, I went ahead and incorporated this interface into an open source library I've started, Tao.NET. I wrote a blog post explaining this library's IArray<T> ...
8
votes
8answers
539 views

What does immutable and readonly mean in C#?

Is it correct that it is not possible to change the value of an immutable object? I have two scenarios regarding readonly that I want to understand: What if I have a collection and mark it as ...
8
votes
8answers
724 views

variable that can't be modified

Does C# allow a variable that can't be modified? It's like a `const`, but instead of having to assign it a value at declaration, the variable does not have any default value, but can only be assigned ...
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;} ...
8
votes
3answers
1k views

What is the best way to implement a property that is readonly to the public, but writable to inheritors?

If I have a property that I want to let inheritors write to, but keep readonly externally, what is the preferred way to implement this? I usually go with something like this: private object m_myProp; ...
7
votes
3answers
157 views

Is a readonly field in C# thread safe?

Is a readonly field in C# thread safe? public class Foo { private readonly int _someField; public Foo() { _someField = 0; } public Foo(int someField) { _someField = someField; ...
7
votes
8answers
342 views

How do I set a readonly field in an initialize method that gets called from the constructor?

I'm sure I've seen somewhere that I can do the following by using an attribute above my Init() method, that tells the compiler that the Init() method must only be called from the constructor, thus ...
7
votes
5answers
559 views

What is a read only collection?

I ran a security code analyst i found myself having a CA2105 warning. I looked at the grade tampering example. I didn't realize you can assign int[] to a readonly int. I thought readonly was like the ...
7
votes
5answers
5k views

Remove readonly of Folder from c#

How can i programatically remove the readonly attribute of folder from c# code ?
7
votes
6answers
389 views

Is there a way to make readonly (not just private) automatic properties?

Automatic properties let me replace this code: private MyType myProperty; public MyType MyProperty { get { return myPropertyField; } } with this code: public MyType MyProperty { get; private ...
7
votes
1answer
1k views

How do You Create a Read-Only Dependency Property?

How do you create a read-only dependancy property? What are the best-practices for doing so? Specifically, what's stumping me the most is the fact that there's no implementation of ...
6
votes
6answers
334 views

C# - Making fields/properties read only conditionally

I have three classes; Classes A and B both reference class C. How can I make it so members of class C can be modified when referenced from class A but not modified when referenced from class B? IE, ...
6
votes
1answer
1k views

WPF: Collection dependency property “is read-only and cannot be set from markup”

I am creating a user control to display a three-month calendar. The control is based on the WPF Calendar control (WPF Toolkit 2009-06), and I want to pass several of the Calendar's properties through ...
6
votes
7answers
578 views

Why does resharper suggest readonly fields

Why is ReSharper suggesting readonly field for 'settings' in my example below? If I understand correctly, you should use readonly modifier if you change this field only in constructor, but in my ...
6
votes
1answer
258 views

F# : Accessing public readonly members of structs in external assemblies

I'm getting a strange error when I use F# to read a public readonly member of a struct type defined in a C# assembly. // C#: compile to Lib.dll namespace Lib { public class MyClass { public ...
6
votes
9answers
2k views

How to make a reference type property “readonly”

I have a class Bar with a private field containing the reference type Foo. I would like to expose Foo in a public property, but I do not want the consumers of the property to be able to alter Foo... ...
5
votes
2answers
865 views

Objective C read-only int? What?

I made an int to count how many successes one of my processes has. Outside my code, I declare: int successes = 0. Then within my loop, I have successes++;, at which point XCode complains that ...
5
votes
1answer
101 views

VB.Net why is this not a bug?

I encounter what I believe to be a bug and I was just wondering if this is already known as a issue or if this is not a issue and why. The problem related to Read Only Properties on a Type when ...
5
votes
2answers
139 views

C# - Static readonly strings — possible to run into multithread issues?

public class MyClass<T> { public static readonly String MyStringValue; static MyClass() { MyStringValue = GenerateString(); } private static String GenerateString() ...
5
votes
4answers
185 views

Is it wise to access read-only data from multiple threads simultaneously?

I have an application that I'm trying to make multithreaded. Each thread will access a large chunk of read-only data. Is is okay if multiple threads access the data simultaneously? I know that if the ...
5
votes
2answers
546 views

Opening a xls spreadsheet programatically in C# from a SharePoint site in Read / Write mode

I have written a procedure that will open a xls from a local disc, refresh the data in it and then save it again. This works fine. The problem occurs when I replace the filename to point to a ...
5
votes
1answer
672 views

Why Tuple's items are ReadOnly?

I was thinking to use Tuple class to store 2 integer information (StartAddress, EndAddress) I need in my program. But I discover that Tuple items are ReadOnly, so if I need to set a value for an ...
5
votes
2answers
1k views

Spring - Transaction Readonly

Just wanted your expert opinions on declarative transaction management for Spring. Here is my setup: DAO layer is plain old JDBC using Spring JdbcTemplate (No Hibernate etc) Service layer is POJO ...
5
votes
2answers
478 views

Problem imitating VS output window's textbox with a WPF TextBox

In Visual Studio's output window, you can position your text caret at the end of the output so that the textbox scrolls down automatically when new text is logged. And when the caret is not at the ...

1 2 3 4 5 8