0
votes
1answer
17 views
Unity: Fatal Execution Engine Error when resolving a TimeSpan
I am trying to resolve a TimeSpan using Unity. Executing the container Resolve call results in a FatalExecutionEngineError.
FatalExecutionEngineError was detected
Message: The runtime has …
0
votes
5answers
86 views
How to delete structure entries in C
I have a list of structures and I want to delete some of them. I don't want to leave any empty space where the structures are deleted. I tried it with this code, but it didn't work.
struct …
1
vote
5answers
238 views
How to check programatically if a type is a struct or a class?
I think the question is clear.
21
votes
7answers
700 views
Why does C have a distinction between -> and . ?
OK, this is of no serious consequence, but it's been bugging me for a
while: Is there a reason for the distinction between the -> and . operators?
Of course, the current rule is that . acts on a …
1
vote
1answer
46 views
How to pack and unpack using ctypes (Structure <-> str)
This might be a silly question but I couldn't find a good answer in the docs or anywhere.
If I use struct to define a binary structure, the struct has 2 symmetrical methods for serialization and …
0
votes
3answers
51 views
How to set an autoproperty in the constructor of a struct?
Why is this valid
public struct MyStruct
{
public MyStruct(double value)
{
myField = value;
}
private double myField;
public double MyProperty
{
get
…
1
vote
4answers
89 views
C# Generics, Constrain to Specific Structs
Is it possible to constrain a genericised method to accept only specific types of struct?
This is OK I believe:
string Add<T>(object value, T expiration) where T : struct;
but this isn't it …
1
vote
5answers
150 views
C structure with pointer to self
Hi!
Is it posible to define a structure with a pointer to that type of structure? What I mean is:
typedef struct {
char* name;
node* parent;
} node;
As far as I tried or read, I don't know …
0
votes
7answers
169 views
Nested structures
The following code compiles on a C++ compiler.
#include<cstdio>
int main()
{
struct xx
{
int x;
struct yy
{
char s;
struct xx *p;
};
struct yy *q;
};
Would there be any difference in …
0
votes
3answers
94 views
Is this a proper usage of the struct element in C#? Kind of confused.
I'm making a class that will read information from resource files (doesn't matter the type of resource file, just for clarification) and pass
the information on a Form for easy manipulation of …
0
votes
2answers
41 views
unique elements - struct array
I have a sorted struct of IPs where I need to get the number of unique IPs, for some reason the way I'm doing it, is giving me a "0" as a result. Which in this case there should be 12 unique ips.
The …
1
vote
1answer
33 views
C# equivalent of python’s struct.pack
Is there a library for C# that allows similar functionality to python's struct from the standard library?
One can emulate the struct library quite closely with real aligned structs. But I didn't find …
1
vote
3answers
98 views
struct - sorting a c-string with qsort
I'm sorting a bunch of IPs, but for some reason they come in the wrong order. I'm not quite sure where could be the problem.
66.249.71.3
190.148.164.245
207.46.232.182
190.148.164.245
…
1
vote
4answers
101 views
Does a capital Decimal use more memory as a lowercase decimal
I heard someone say that in C#, capital Decimal is using more memory than lower case decimal, because Decimal is resolved to the lowercase decimal and that requires memory.
Is that true?
3
votes
4answers
132 views
Why does GCC give me a syntax error when trying to return a struct pointer?
I'm using CodeLite on Ubuntu and for some bizzare reason GCC keeps throwing this error whenever I try to compile code with a function that returns a pointer to a struct:
error: expected ‘=’, ‘,’, …
