473,738 Members | 2,645 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

"Use of possibly unassigned field" compile error

Our company has been developing a program in C# for some time now, and we
haven't had any problems with it, but just last night something cropped up
that has me, and everyone else, stumped.

I have a struct that contains several different types of data. This struct
is used throuout the program. Now, when I compile, I get 6 errors, all of
them "Use of possibly unassigned field 'awayTime'" or "Use of possibly
unassigned field 'intlTime'". It is correct, it is possible that these
fields aren't assigned, but I don't care. It's inside of a struct, and
everything inside of a struct gets assigned its default value anyway.

This is difficult to explain, but if anyone else has had this problem and
fixed it, i'd love to know how. Thanks.

Chris LaJoie
Nov 15 '05 #1
10 19724
Chris LaJoie <ch***@etriptra der.com> wrote:
Our company has been developing a program in C# for some time now, and we
haven't had any problems with it, but just last night something cropped up
that has me, and everyone else, stumped.

I have a struct that contains several different types of data. This struct
is used throuout the program. Now, when I compile, I get 6 errors, all of
them "Use of possibly unassigned field 'awayTime'" or "Use of possibly
unassigned field 'intlTime'". It is correct, it is possible that these
fields aren't assigned, but I don't care. It's inside of a struct, and
everything inside of a struct gets assigned its default value anyway.
Local variables *don't* have default values, according to the C# spec.
That's what you're running into.
This is difficult to explain, but if anyone else has had this problem and
fixed it, i'd love to know how. Thanks.


The easiest way to fix it is to change:

MyStruct foo;

to

MyStruct foo = new MyStruct();

in your code.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 15 '05 #2
The struct var was being used inside of a foreach loop. Just for kicks (a
hunch) I changed the foreach to a for, looping through the array. This
solved everything.

Simply using bla = new StructName() would not have worked in this case
(because the values were being read from, not assigned to).

Chris LaJoie

"Jon Skeet" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@news.microsof t.com...
Chris LaJoie <ch***@etriptra der.com> wrote:
Our company has been developing a program in C# for some time now, and we haven't had any problems with it, but just last night something cropped up that has me, and everyone else, stumped.

I have a struct that contains several different types of data. This struct is used throuout the program. Now, when I compile, I get 6 errors, all of them "Use of possibly unassigned field 'awayTime'" or "Use of possibly
unassigned field 'intlTime'". It is correct, it is possible that these
fields aren't assigned, but I don't care. It's inside of a struct, and
everything inside of a struct gets assigned its default value anyway.


Local variables *don't* have default values, according to the C# spec.
That's what you're running into.
This is difficult to explain, but if anyone else has had this problem and fixed it, i'd love to know how. Thanks.


The easiest way to fix it is to change:

MyStruct foo;

to

MyStruct foo = new MyStruct();

in your code.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 15 '05 #3
will post some sample code when I get home later today. Stay tuned!

Chris LaJoie

"Jon Skeet" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@news.microsof t.com...
Chris LaJoie <ch***@etriptra der.com> wrote:
The struct var was being used inside of a foreach loop. Just for kicks (a hunch) I changed the foreach to a for, looping through the array. This
solved everything.


Interesting - could you post some sample code? (Just enough to show
what's going on.)
Simply using bla = new StructName() would not have worked in this case
(because the values were being read from, not assigned to).


I'm not sure I follow you, to be honest... if you're assuming that the
declaration gave you the default values, then assigning the default
value to it at the point of declaration should give you *exactly* the
same behaviour, but without the compile error.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 15 '05 #4
as I said earlier, my problem has been solved, but just to clear some things
up I'll post some sample code. I have my struct:

struct TestStruct {
public int a;
public int b;
}

now I have a function that only assigns the values of the struct. In my
case, this function did not get any compile errors:

public TestStruct[] Parse() {
TestStruct[] ret = new TestStruct[10];
for(int x = 0; x < ret.Length; x++) {
ret[x].a = 1;
ret[x].b = 2;
}
return ret;
}

as you can see, that function doesn't do any reading of the values, only
assigns them. I have another function, which reads the data and inserts it
in our database.

public bool InsertInDB(Test Struct[] things) {
StringBuilder sql = new StringBuilder(" INSERT....");
foreach(TestStr uct t in things) {
sql.Append(sqli fy(t.a) + ", "); // <-- compile error here
sql.Append(sqli fy(t.b) + ")"); // <-- compile error here

[...insert in db...etc...]
}
}

solving this was a matter of simply replacing the foreach with a for. I'm
not sure exactly what the difference is in the IL code generated, but
clearly there is one. here's how i fixed it:

public bool InsertInDB(Test Struct[] things) {
StringBuilder sql = new StringBuilder(" INSERT....");
for(int x = 0; x < things.Length; x++) {
sql.Append(sqli fy(things[x].a) + ", "); // <-- compile error here
sql.Append(sqli fy(things[x].b) + ")"); // <-- compile error here

[...insert in db...etc...]
}
}

I appologize for using such silly examples, but I'm not allowed to post
company code.
Chris LaJoie
"Jon Skeet" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@news.microsof t.com...
Chris LaJoie <ch***@etriptra der.com> wrote:
The struct var was being used inside of a foreach loop. Just for kicks (a hunch) I changed the foreach to a for, looping through the array. This
solved everything.


Interesting - could you post some sample code? (Just enough to show
what's going on.)
Simply using bla = new StructName() would not have worked in this case
(because the values were being read from, not assigned to).


I'm not sure I follow you, to be honest... if you're assuming that the
declaration gave you the default values, then assigning the default
value to it at the point of declaration should give you *exactly* the
same behaviour, but without the compile error.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 15 '05 #5
Chris LaJoie <ch***@etriptra der.com> wrote:
as I said earlier, my problem has been solved, but just to clear some things
up I'll post some sample code. I have my struct:

struct TestStruct {
public int a;
public int b;
}

now I have a function that only assigns the values of the struct. In my
case, this function did not get any compile errors:

public TestStruct[] Parse() {
TestStruct[] ret = new TestStruct[10];
for(int x = 0; x < ret.Length; x++) {
ret[x].a = 1;
ret[x].b = 2;
}
return ret;
}
Right - just assigning will never have any problem.
as you can see, that function doesn't do any reading of the values, only
assigns them. I have another function, which reads the data and inserts it
in our database.

public bool InsertInDB(Test Struct[] things) {
StringBuilder sql = new StringBuilder(" INSERT....");
foreach(TestStr uct t in things) {
sql.Append(sqli fy(t.a) + ", "); // <-- compile error here
sql.Append(sqli fy(t.b) + ")"); // <-- compile error here

[...insert in db...etc...]
}
}
That *is* strange. I don't get a compile-time error with this, for
instance:

using System;

struct Foo
{
public int x;
}

class Test
{
static void Main(string[] args)
{
Foo[] f = new Foo[5];
f[0].x=5;
Bar (f);
}

static void Bar (Foo[] x)
{
foreach (Foo y in x)
{
Console.WriteLi ne (y.x);
}
}
}

<snip>
I appologize for using such silly examples, but I'm not allowed to post
company code.


That's not a problem at all - but I'm still finding it hard to see why
you're getting an error in the first place. Could you try compiling my
code above? It should compile without warning. If it does, could you
try constructing a similar complete test case which *doesn't* compile?

Which version of Visual Studio (or csc) are you using?

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 15 '05 #6
I'm using VS.NET 2003. If I tried to create an example program that didn't
compile, I wouldn't be able to. I honestly believe that this is a problem
with the C# compiler. These problems crop up in code that HAS worked for
months. Usually silly things like changing a foreach to a for will fix it.
For example, I fixed one a couple weeks ago. Only one member of the struct
was causing compile errors, so I changed the code around inside the struct.
Here's how I did it.

struct TestStruct {
public int a; // <-- still works fine
//public int b; // <-- broken
private int m_b;
public int b {
get {return m_b;}
set {m_b = value;}
}
}

that's right, simply changing a public variable to a property fixed the
problem.

I've researched the error (Use of possibly unassigned field) thoroughly.
Google only came up with documentation, not anyone else with problems.
Something I haven't tried is to compile it on another computer when it does
not compile on mine.

I do appreciate your interest in this, but I'm afraid that in the end we
won't be any closer to figuring it out.

Chris LaJoie

"Jon Skeet" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@news.microsof t.com...
Chris LaJoie <ch***@etriptra der.com> wrote:
as I said earlier, my problem has been solved, but just to clear some things up I'll post some sample code. I have my struct:

struct TestStruct {
public int a;
public int b;
}

now I have a function that only assigns the values of the struct. In my
case, this function did not get any compile errors:

public TestStruct[] Parse() {
TestStruct[] ret = new TestStruct[10];
for(int x = 0; x < ret.Length; x++) {
ret[x].a = 1;
ret[x].b = 2;
}
return ret;
}


Right - just assigning will never have any problem.
as you can see, that function doesn't do any reading of the values, only
assigns them. I have another function, which reads the data and inserts it in our database.

public bool InsertInDB(Test Struct[] things) {
StringBuilder sql = new StringBuilder(" INSERT....");
foreach(TestStr uct t in things) {
sql.Append(sqli fy(t.a) + ", "); // <-- compile error here
sql.Append(sqli fy(t.b) + ")"); // <-- compile error here

[...insert in db...etc...]
}
}


That *is* strange. I don't get a compile-time error with this, for
instance:

using System;

struct Foo
{
public int x;
}

class Test
{
static void Main(string[] args)
{
Foo[] f = new Foo[5];
f[0].x=5;
Bar (f);
}

static void Bar (Foo[] x)
{
foreach (Foo y in x)
{
Console.WriteLi ne (y.x);
}
}
}

<snip>
I appologize for using such silly examples, but I'm not allowed to post
company code.


That's not a problem at all - but I'm still finding it hard to see why
you're getting an error in the first place. Could you try compiling my
code above? It should compile without warning. If it does, could you
try constructing a similar complete test case which *doesn't* compile?

Which version of Visual Studio (or csc) are you using?

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 15 '05 #7
Chris LaJoie <ch***@etriptra der.com> wrote:
I'm using VS.NET 2003. If I tried to create an example program that didn't
compile, I wouldn't be able to. I honestly believe that this is a problem
with the C# compiler.
Yes, it sounds like it. Certainly the code you posted looked like it
was fine.
These problems crop up in code that HAS worked for
months. Usually silly things like changing a foreach to a for will fix it.
For example, I fixed one a couple weeks ago. Only one member of the struct
was causing compile errors, so I changed the code around inside the struct.
<snip>

That sounds very strange.
Something I haven't tried is to compile it on another computer when it does
not compile on mine.
That's definitely worth doing. I can't imagine how your VS.NET
installation could be damaged in such a subtle way, but it's definitely
worth a try.
I do appreciate your interest in this, but I'm afraid that in the end we
won't be any closer to figuring it out.


You could well be right :(

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 15 '05 #8
One question I have it if you're using incremental compilation.

--
--Grant
This posting is provided "AS IS" with no warranties, and confers no rights.
Nov 15 '05 #9
No, none of my projects use incremental build.

Chris LaJoie

"Grant Richins [MS]" <gr*****@online .microsoft.com> wrote in message
news:e2******** ******@TK2MSFTN GP09.phx.gbl...
One question I have it if you're using incremental compilation.

--
--Grant
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 15 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
5620
by: Liang | last post by:
Hi, I use "defined $r_libs->{$name}" to check first if a key exists in a hash table. But Perl gives a warning WHENEVER the key exists: "Use of uninitialized value". Would u please help to check the script, and let me know the reason? Thanks in advance. Liang
7
9031
by: Ensoul Chee | last post by:
I used #include <iostream.h> int m; cout << "Hexadecimal == 0x" << hex << m << endl; to print value of m in hexadecimal mode. But I got the compile error like this couttest.cpp:20 `hex' undeclared (first use this function)
2
3624
by: AA Arens | last post by:
When I place a record serch utility (vos the button placement wizzrd), I discovered that the Match setting is "Whole Field" by default. How to make "Any Part Of Field" default?
2
9950
by: yinglcs | last post by:
I have the following code, which use template as the parent class of my other class. But I have "instantiated from here" compile error at this line: class C: public B2<A>. Can some one please tell me why? class AI {
3
2345
by: tony | last post by:
Hello! When I build an exe file that use 6 class library dll I get this error. Could not copy temporary files to the output directory. The file 'MeltPracStorage.dll' cannot be copied to the run directory. Det går inte att komma åt filen eftersom den används av en annan process. All six project is located in the solution that build the exe file This compile error occurred when I add project 'MeltPracStorage to the
8
11149
by: Dom | last post by:
This is a little tricky, but I think the error I'm getting isn't valid. The compiler just doesn't know my logic. MyObject o; switch (IntVariable) { case 1: o = new MyObject() break;
10
10801
Shakss2
by: Shakss2 | last post by:
I have a form, where I can activate the search and replace dialogbox when pressing a button. My problem is that the dialogbox opens with the default that it should search for full match only, and I want it to open with default "a part of field". I did change it to default "A part of the field"? by going to Tools -> Options menu to open the "Options" dialog window. Select the "Edit/Find" tab. Select the "General Search" option button.
6
25243
matthardwick
by: matthardwick | last post by:
Is there a way to make the find box (Ctrl+F) default to match "Any part of field" instead of "Whole field". Thanks in advance. Matt.
2
6429
by: plasmay | last post by:
Hi, I am new in learning c#, and have recently encountered a problem: static float ComputeAvg(float a) { float sum; int i; for (i = 0; i <= a.Length; i++) { sum = sum + a;
0
8968
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9334
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9259
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9208
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6750
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6053
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4824
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3279
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.