1
vote
4answers
60 views
Readonly wrapper of a LinkedList. HowTo?
Hello.
.NET v2
When the List has a very useful (4 me) method AsReadOnly()
the LinkedList does not have such a method.
Is there a way to "quickly" interface an internal LinkedLis …
61
votes
19answers
3k 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?
0
votes
1answer
26 views
Is Shared ReadOnly lazyloaded?
Hello!
I was wondering when I write
Shared ReadOnly Variable As DataType = New DataType()
Or alternatively
Shared ReadOnly Variable As New DataType()
Is it lazy loaded or …
0
votes
3answers
106 views
How do you make a property truly read only?
Take the following property:
public string Foo
{
get;
private set;
}
Using reflection, I can still set the value of this property from outside the owning class. Is there …
1
vote
3answers
62 views
Having an uneditable, but selectable textbox
Hi, I'm making a web app. In it there are times when a form may be "read only". To simulate this with HTML, I have it so that all the (dynamically created) text boxes that contain …
0
votes
0answers
23 views
Get a change notification for a read-only property of an existing control
Having an existing control in Silverlight that has a read-only property, I would like to receive a notification when the property value changes.
I know how to do it with a custom …
1
vote
4answers
130 views
Is Core Data useful for readonly data too?
Hi, 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 righ …
1
vote
5answers
102 views
Open file read-only
In a C# WinForms app, I am using System.IO.Diagnostics.Process.Start(fileName) to open files. The type of file can be .doc, .docx, .xls, .xlsx, .csv, .pdf, or .txt.
Is there any …
1
vote
3answers
43 views
Difference between ReadOnlyCollection string[] in the context of collection
IList<string> strList = new string[] { "Apple", "Mango", "Orange" };
IList<string> lst = new ReadOnlyCollection<string>(new[]{"Google",
"MSN","Yahoo"});
In bot …
0
votes
4answers
25 views
serving a file from temp with rails on read only file system
I'm deploying my apps now to a server that has a read only file system. I was using a gem to make a zip file and randomly plopping it in /public somewhere. Now I can only write to …
2
votes
2answers
98 views
In C#, can a method return List such that clients can only read it, but not write to it?
Let's say I have a C# class:
class Foo
{
private List<Bar> _barList;
List<Bar> GetBarList() { return _barList; }
...
}
A client can call it:
var barList = f …
4
votes
5answers
187 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 construc …
2
votes
3answers
88 views
How to make database field readonly in rails.
Hey folks,
I have a database table with a certain field which should be impossible to update once it has been inserted to the database. How do I tell my model that it shouldn't al …
1
vote
3answers
256 views
Why does a read-only textbox does not return any data in ASP.NET?
I've set a textbox to read-only. When the user clicks on it, a calendar is displayed and the user selects the date which inputs into the read-only textbox.
But when I try to enter …
4
votes
6answers
123 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 MyPrope …
