3
votes
2answers
47 views
Changing a stuct inside another struct in a foreach loop
The following code prints (when invoking MyMethod):
0
0
0
1
I would expect it to print:
0
0
1
1
Why is this?
Code:
private struct MyStruct
{
public MyInnerStruct in …
4
votes
9answers
168 views
typedef struct vs struct definitions
I'm a beginner with C programming, but I was wondering what the difference was between the using typedef when defining a structure versus not using typedef. It seems to my like the …
1
vote
3answers
65 views
Marshalling struct with embedded pointer from C# to unmanaged driver
Hi,
I'm trying to interface C# (.NET Compact Framework 3.5) with a Windows CE 6 R2 stream driver using P/Invoked DeviceIoControl() calls . For one of the IOCTL codes, the driver …
1
vote
1answer
122 views
What does the : do in a struct declaration after a member
In:
struct foo {
unsigned bar : 2;
};
What does the ': 2' do?
0
votes
4answers
110 views
Can’t add value to List in C#
I'd like to add a value to a struct
if (!existISDNteilnehmer(split))
{
isdnObjs.Add(new ISDN() { name = split, number = "",
channels = new List<str …
1
vote
3answers
84 views
c# struct fields are “never assigned to” warnings
Based on http://alexreg.wordpress.com/2009/05/03/strongly-typed-csv-reader-in-c/, I created a DLL which can read different file types. I also have unit tests that run successfully …
0
votes
2answers
97 views
Dealing with Structs in C
Suppose struct_name is the name of a struct I've defined, and array is a member in the struct defined as char array[o]
what does the following line produce? (*struct_name).array
a …
1
vote
2answers
42 views
Problems returning vector stack reference
Hello,
I am working on an application that builds a vector of structs for items in a given directory and returns a reference of the vector for it to be read, I receive the followi …
2
votes
2answers
57 views
Handle empty structs in Objective-C (Coordinate in custom class)
I have a custom class that has as an instance variable of a coordinate:
CLLocationCoordinate2D eventLocation;
@property(nonatomic) CLLocationCoordinate2D eventLocation;
I'm pars …
2
votes
4answers
139 views
use MORE structs?
There have been several questions over the past few days about the proper use of null; here are three (one is mine):
Best Practice: Should functions return null or an empty objec …
0
votes
2answers
67 views
accessing struct variable inside getter setter in a c++ class
Okay, I have something like this in C++:
class MyClass{
private:
int someVariable;
int someOtherVariable;
struct structName{
int someStructVariable;
int someOtherSt …
1
vote
2answers
31 views
Invoke C dll functions,structs and callbacks in C#
Below is the header file.can anyone please give a idea to call the callback function below.
//Function Prototype
int PASCAL EXPORT RegisterCallbackFunctions (TCallbacks CallbackF …
3
votes
4answers
76 views
Python File Slurp w/ endian conversion
It was recently asked how to do a file slurp in python:
link text
And it was recommended to use something like
with open('x.txt') as x: f = x.read()
How would I go about doing …
4
votes
8answers
241 views
* is illegal for a struct?
I tried to compile the following code, but the compiler wouldn't doing because " * is illegal for a struct" is that true?
struct String {
int length;
int capacity;
un …
1
vote
1answer
65 views
c++: Initialize struct with one array containing all arguments
Hi,
I am currently working on a small tokenizer template function which also casts the tokens to different objects. this works really nice aslong as all the strucs I cast to have …
