Why isn't string an IReadOnlyList<char>? [closed] - c#

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
C#'s string already implements IEnumerable, and it has an indexer and a well-defined length, so why not support the new interface?
is it lack of time, or was the decision made for other reasons?

Related

Why is my const declaration failing to assign a hex value? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm trying to declare a constant value for a hexdecimal value but it seems I can't achieve this in C#.
const PROCESSES = &H1F0FFF;
Why is this not working?
const int PROCESSES = 0x1F0FFF;

Simple christmas' wpf styles [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm not sure if such question is eligable, but
I have a wpf (4.0) software for our company and i'd like to make some christmas magic for our stuff via UI of app.
Do you have any simple ideas or already implemented styles for christmas theme?

Equivalent of VCR for NUnit [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
We've written a basic networking application using C# and .net. For tests, we'd love to use something similar to Ruby's VCR. Does such a thing exist for C#/.net ?

How to Create variables at runtime and what was its scope in c# [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
i m getting string e.g.('1','2','7','12') from database & i want to query sqlserve i.e.
select subject_nme from subject where subjid=1 && subjid=2 && subjid=7
using the intgers from string.For querying i need to create dynamic variables to store the subjid into them and use them.
THANX
Select subject_nme from subject where subjid in ('1','2','7','12')

How can I write my own LINQ provider to query some custom store? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am planning to write a LINQ provider, so that I can query data in a custom store - for example, let us say, some custom file format.
What is a good way to start? Any examples?

Categories