1
vote
6answers
121 views
C# - AsEnumerable Example
What is the exact use of AsEnumerable? Will it change non-enumerable collection to enumerable
collection?.Please give me a simple example.
2
votes
2answers
83 views
Conversion of Enum to Enumerable
To convert Enum to Enumerable ,I use
public enum Flags
{
Trivial=1,
Minor,
Major,
Critical
}
IEnumerable<int> n =
Enumerable.Range( …
1
vote
2answers
75 views
Scala: How to know if a class is an enumeration; isInstanceOf[Enumeration] doesn’t work
I'm in scala writing a serializer that saves an object (or Model) to the database (for app engine), and I need to treat some fields as special cases. For example, if the field is o …
1
vote
4answers
85 views
How to conver a string to a enum of type int?
I have an enum of type int:
public enum BlahType
{
blah1 = 1,
blah2 = 2
}
If I have a string:
string something = "blah1"
How can I convert this to BlahType?
0
votes
2answers
51 views
Powershell: Output object[] to a file
I would like to retrieve the contents of a file, filter and modify them and write the result back to a file. I do this:
PS C:\code> "test1" >> test.txt
PS C:\code> "t …
4
votes
4answers
127 views
working pattern of yield return
When i have a code block
static void Main()
{
foreach (int i in YieldDemo.SupplyIntegers())
{
Console.WriteLine("{0} is consumed by foreach iteration", i);
}
}
clas …
1
vote
3answers
44 views
How do I import a COM object namespace/enumeration in Python?
I'm relatively new to programming/python, so I'd appreciate any help I can get. I want to save an excel file as a specific format using Excel through COM. Here is the code:
imp …
8
votes
7answers
254 views
Why cant we change Values of a dictionary while enumerating its keys?
class Program
{
static void Main(string[] args)
{
var dictionary = new Dictionary<string, int>()
{
{"1", 1}, {"2", …
0
votes
4answers
88 views
Point of need of custom Enumerations
When reading a post some points were given without example :
To implement IEnumerable / IEnumerable, you must provide an enumerator :
•If the class is "wrapping" another collec …
1
vote
3answers
46 views
Create an enumerator<{datatype, datatype}> from 2 enumerables?
HI.
This is what I want to do:
str2 = "91";
str1 = "19";
var testQuery = from c1 in str1
from c2 in str2
select new {c1, c2};
…
35
votes
22answers
1k views
Are booleans as method arguments unacceptable?
A colleague of mine states that booleans as method arguments are not acceptable. They shall be replaced by enumerations. At first I did not see any benefit, but he gave me an examp …
0
votes
2answers
54 views
Enumeration Utility Library
I'm looking for a open source library or examples for working with Enum types in .Net. In addition to the standard extensions that people use for Enums (TypeParse, etc.), I need a …
4
votes
2answers
92 views
Discovering the class where a property is first published with multiple levels of inheritence.
Using the Typinfo unit, it is easy to enumerate properties as seen in the following snippet:
procedure TYRPropertiesMap.InitFrom(AClass: TClass; InheritLevel: Integer = 0);
var
…
28
votes
9answers
8k views
C#: How to enumerate an enum?
How can you enumerate a enum in C#?
e.g. the following does not compile:
public enum Suit
{
Spades,
Hearts,
Clubs,
Diamonds
}
public void EnumerateAllSuitsDemoMethod()
{
fo …
1
vote
3answers
125 views
Is there a simple way to alphabetize a String Enumeration in Java?
Just as the title says.
I tried messing around a bit with Collections.sort() on a List[] and the .sort() function of an ArrayList but I was never able to parse it back to an Enume …
