473,387 Members | 1,572 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Shall I now always use String.Empty instead of ""

In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Let me know your thoughts.

Nov 23 '06 #1
26 2722
"an******@hotmail.com" wrote:
In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?
If you're checking for an empty string it's better to use:
String.IsNullOrEmpty(strStringName)
As of .NET 2.0
Nov 23 '06 #2
Hi,

There is very little difference between the two.

"" is easy to write, easy to read, and near impossible to misunderstand.
It will however create an object where String.Empty would not, but the ""
object is reused throughout the lifespawn of your application so the
difference can therefore be ignored.

Neither will detect a null string so if you can have null strings you need
to either check for that as well or use String.IsNullErEmtpy as Leon
pointed out.

if(str == null || str == "") // or
if(String.IsNullOrEmpty(str))

If, on the other hand, you know you will never get null strings, testing
for String.Length == 0 is the fastest way.

On Thu, 23 Nov 2006 10:57:06 +0100, <an******@hotmail.comwrote:
In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Let me know your thoughts.


--
Happy Coding!
Morten Wennevik [C# MVP]
Nov 23 '06 #3
<an******@hotmail.comwrote:
In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?
Which do you find easier to read? That's pretty much the only
difference of any significance, IMO.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 23 '06 #4
Morten Wennevik wrote:
"" is easy to write, easy to read, and near impossible to misunderstand.
It will however create an object where String.Empty would not, but the ""
object is reused throughout the lifespawn of your application so the
difference can therefore be ignored.
I was surprised to read that "" will create an object where
String.Empty will not - surely String.Empty is just a static field
that points to an interned "" constant?

Sure enough, Reflector shows that String.Empty is implemented as

class string
{
static readonly string Empty = "";
}

.... yet the below code shows that while both "" and String.Empty are
interned, "" is not reference-equal to String.Empty. What gives? I
thought the intern table was maintained across assembly boundaries, so
it shouldn't matter that String.Empty comes from mscorlib.dll while ""
comes from the app assembly.

//

using System;

namespace StringEmptyTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
Console.WriteLine(String.IsInterned("") != null);
Console.WriteLine(String.IsInterned(String.Empty) != null);
Console.ReadLine();
}
}
}
--

..NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.
Nov 23 '06 #5
And what happens if string interning is disabled? Doesn't this mean that
each time you have a "" in your code that you will have the overhead of
allocating memory on the heap and creating a new string object?

Gabriel

"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
<an******@hotmail.comwrote:
>In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Which do you find easier to read? That's pretty much the only
difference of any significance, IMO.

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

Nov 27 '06 #6
Gabriel Lozano-Morán <ab***@frontbridge.comwrote:
And what happens if string interning is disabled? Doesn't this mean that
each time you have a "" in your code that you will have the overhead of
allocating memory on the heap and creating a new string object?
String interning isn't something you can enable or disable, as far as
I'm aware - and at that point, the C# language specification is being
violated. I don't alter my programming style in order to suit
situations like that - it's like changing your style to suit a
situation where garbage collection doesn't occur.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 28 '06 #7
See:
http://msdn2.microsoft.com/en-us/lib...attribute.aspx
http://msdn2.microsoft.com/en-us/lib...laxations.aspx

Gabriel Lozano-Morán
"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
Gabriel Lozano-Morán <ab***@frontbridge.comwrote:
And what happens if string interning is disabled? Doesn't this mean that
each time you have a "" in your code that you will have the overhead of
allocating memory on the heap and creating a new string object?
String interning isn't something you can enable or disable, as far as
I'm aware - and at that point, the C# language specification is being
violated. I don't alter my programming style in order to suit
situations like that - it's like changing your style to suit a
situation where garbage collection doesn't occur.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 28 '06 #8
"Jon Skeet [C# MVP]" <sk***@pobox.comwrote
And what happens if string interning is disabled?
String interning isn't something you can enable or disable, as far as
I'm aware - and at that point, the C# language specification is being
violated.
You can't disable it. At least not that I was able to find, and I looked for
quite a while.

I wrote up a blog entry on my findings with string interning and when /
where it can save memory (at least in the case i'm worried about):
http://www.coversant.com/dotnetnuke/...=88&EntryID=24

--
Chris Mullins, MCSD.NET, MCPD:Enterprise
http://www.coversant.net/blogs/cmullins
Nov 28 '06 #9
Gabriel Lozano-Morán <ab***@frontbridge.comwrote:
See:
http://msdn2.microsoft.com/en-us/lib....compilerservi
ces.compilationrelaxationsattribute.aspx
How bizarre. Using that would certainly mean you were no longer using a
language which conformed to the C# language spec. However, you would
have to *explicitly* use that attribute, so again I can't see that it's
actually a consideration to think about in normal coding.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 28 '06 #10
<an******@hotmail.comwrote:
In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?
From the Blog at:
http://blogs.msdn.com/brada/archive/.../22/49997.aspx
"" actually creates an object, it will likely be
pulled out of the string intern pool, but still.
while String.Empty creates no object.
so if you are really looking for ultimately
in memory efficiency, I suggest String.Empty.
So there ya have it. String.Empty is obviously a zillion times better than
"". :)

In all honesty though, I don't think it ever really matters. Certainly not
in any cases I've ever come across. I use string.empty, because I dislike
the look of "".

--
Chris Mullins, MCSD.NET, MCPD:Enterprise
http://www.coversant.net/blogs/cmullins
Nov 28 '06 #11
Hi,

I use string.Empty because that's what everyone I talked to had told me
since the original framework beta.

Personally, I don't really care either way now, but it's just a habit.

If I could shake the OCD involved I might be able to start using "" instead,
which seems cleaner to me ;)

--
Dave Sexton

<an******@hotmail.comwrote in message
news:11********************@j72g2000cwa.googlegrou ps.com...
In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Let me know your thoughts.

Nov 28 '06 #12
I personally prefer string.Empty over "" in code. It is just a matter of
flavor but it can be a good thing to make it a guideline whether or not you
to use "" vs string.Empty for the team.

Gabriel Lozano-Morán

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:ex**************@TK2MSFTNGP02.phx.gbl...
Hi,

I use string.Empty because that's what everyone I talked to had told me
since the original framework beta.

Personally, I don't really care either way now, but it's just a habit.

If I could shake the OCD involved I might be able to start using ""
instead, which seems cleaner to me ;)

--
Dave Sexton

<an******@hotmail.comwrote in message
news:11********************@j72g2000cwa.googlegrou ps.com...
>In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Let me know your thoughts.


Nov 28 '06 #13
Hi Gabriel,

I don't think I'd be too concerned if different team members used "" or
string.Empty. I'd leave that up to personal preference. It really isn't
that important, IMO.

--
Dave Sexton

"Gabriel Lozano-Morán" <ab***@frontbridge.comwrote in message
news:un**************@TK2MSFTNGP03.phx.gbl...
>I personally prefer string.Empty over "" in code. It is just a matter of
flavor but it can be a good thing to make it a guideline whether or not you
to use "" vs string.Empty for the team.

Gabriel Lozano-Morán

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:ex**************@TK2MSFTNGP02.phx.gbl...
>Hi,

I use string.Empty because that's what everyone I talked to had told me
since the original framework beta.

Personally, I don't really care either way now, but it's just a habit.

If I could shake the OCD involved I might be able to start using ""
instead, which seems cleaner to me ;)

--
Dave Sexton

<an******@hotmail.comwrote in message
news:11********************@j72g2000cwa.googlegro ups.com...
>>In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Let me know your thoughts.



Nov 28 '06 #14
>How bizarre. Using that would certainly mean you were no longer using a
>language which conformed to the C# language spec. However, you would
have to *explicitly* use that attribute
Actually the C# 2.0 compiler adds this attribute to all assemblies,
unless you explicitly specify otherwise.

Which part of the spec do you mean this would violate? I know that
previous compiler versions sometimes relied on interning to implement
the switch statement for strings, but that doesn't seem to be the case
anymore.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Nov 28 '06 #15
Mattias Sjögren <ma********************@mvps.orgwrote:
How bizarre. Using that would certainly mean you were no longer using a
language which conformed to the C# language spec. However, you would
have to *explicitly* use that attribute
Actually the C# 2.0 compiler adds this attribute to all assemblies,
unless you explicitly specify otherwise.
Yikes - you're right. Interesting that it doesn't seem to have the
indicated effect. Here's a sample program:

using System;
using System.Diagnostics;

class Test1
{
public static string Empty = "";
}

class Test2
{
public static string Empty = "";
}

class Test
{
static void Main()
{
string s1 = Test1.Empty;
string s2 = Test2.Empty;
Console.WriteLine (object.ReferenceEquals(s1, s2));
}
}

That prints "True" on my box, which will only be true if the strings
are interned. Printing string.IsInterned("x") shows that being interned
too.

Odd. I'm intrigued now...
Which part of the spec do you mean this would violate? I know that
previous compiler versions sometimes relied on interning to implement
the switch statement for strings, but that doesn't seem to be the case
anymore.
From
http://www.jaggersoft.com/csharp_sta...string-literal

<quote>
Each string literal does not necessarily result in a new string
instance. When two or more string literals that are equivalent
according to the string equality operator (§14.9.7), appear in the same
assembly, these string literals refer to the same string instance.
</quote>

(I'll have to look at how strings are switched now, too. So much to
look at, so little time...)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 28 '06 #16
Hi Jon,

Apparently, CompilationRelaxations.NoStringInterning only disables string
interning for the NGEN utility. This setting is automatically applied on
all assemblies compiled by the C# 2.0 compiler, as Mattias already
mentioned, and as you've pointed out Interning is certainly not disabled in
2.0 :)

The documentation Gabriel has cited is definitely misleading and should be
updated. I don't believe that C# or .NET provides the ability to disable
string interning in code.

"Starting with the .NET Framework version 2.0, you can override the use of
the intern pool when you use the Native Image Generator (Ngen.exe) to
install an assembly to the native image cache on a local computer. For more
information, see Performance Considerations in the Remarks section for the
Intern property." (and by "property" I think they mean "method" :)

"String.IsInterned Method"
http://msdn2.microsoft.com/en-us/lib...sinterned.aspx

"The .NET Framework version 2.0 introduces the
CompilationRelaxations.NoStringInterning enumeration member. The
NoStringInterning member marks an assembly as not requiring string-literal
interning. You can apply NoStringInterning to an assembly using the
CompilationRelaxationsAttribute attribute. When you use the Native Image
Generator (Ngen.exe) to install that assembly to the native image cache on
the local computer, string interning is not used."

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...rn(vs.80).aspx

--
Dave Sexton

"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
Mattias Sjögren <ma********************@mvps.orgwrote:
How bizarre. Using that would certainly mean you were no longer using a
language which conformed to the C# language spec. However, you would
have to *explicitly* use that attribute

Actually the C# 2.0 compiler adds this attribute to all assemblies,
unless you explicitly specify otherwise.
Yikes - you're right. Interesting that it doesn't seem to have the
indicated effect. Here's a sample program:

using System;
using System.Diagnostics;

class Test1
{
public static string Empty = "";
}

class Test2
{
public static string Empty = "";
}

class Test
{
static void Main()
{
string s1 = Test1.Empty;
string s2 = Test2.Empty;
Console.WriteLine (object.ReferenceEquals(s1, s2));
}
}

That prints "True" on my box, which will only be true if the strings
are interned. Printing string.IsInterned("x") shows that being interned
too.

Odd. I'm intrigued now...
Which part of the spec do you mean this would violate? I know that
previous compiler versions sometimes relied on interning to implement
the switch statement for strings, but that doesn't seem to be the case
anymore.
From
http://www.jaggersoft.com/csharp_sta...string-literal

<quote>
Each string literal does not necessarily result in a new string
instance. When two or more string literals that are equivalent
according to the string equality operator (§14.9.7), appear in the same
assembly, these string literals refer to the same string instance.
</quote>

(I'll have to look at how strings are switched now, too. So much to
look at, so little time...)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 28 '06 #17
"Mattias Sjögren" wrote:
Actually the C# 2.0 compiler adds this attribute to all assemblies,
unless you explicitly specify otherwise.

Which part of the spec do you mean this would violate? I know that
previous compiler versions sometimes relied on interning to implement
the switch statement for strings, but that doesn't seem to be the case
anymore.
That's news to me, but a quick test shows that you're right.

That's rather strange - I wonder if they found that the cost of
interning switch input strings was greater than the savings from using
ReferenceEquals instead of Equals (when comparing the input string to
the case tags).

--

..NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.
Nov 28 '06 #18
Hi Jon,

Your example code has been bothering me - it should work, however it doesn't
and I can't figure out why :p

But if you think that's weird, check out the following documentation I found
on MSDN:

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...ng.intern.aspx

<quote>
Version Considerations
Starting with the .NET Framework version 2.0, there is a behavioral change
in the Intern method. In the following C# code sequence, the variable str1
is assigned a reference to Empty, the variable str2 is assigned the
reference to Empty that is returned by the Intern method, then the
references contained in str1 and str2 are compared for equality.

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
if ((object) str1) == ((object) str2) .

In the .NET Framework version 1.1, str1 and str2 are not equal, but starting
in the .NET Framework version 2.0, str1 and str2 are equal.
</quote>

Not in my test :|

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);

// false
Console.WriteLine((object) str1 == (object) str2);

// false
Console.WriteLine((object) string.Empty == (object) "");

// true
Console.WriteLine((object) "" == (object) "");
Using Reflector I verified that string.Empty is assigned the empty literal,
"", in the class constructor (.cctor). I also verified, through testing,
that interning works across assemblies; so I'm stumped here.

The earliest version of the framework that I have installed on my machine is
2.0, verified in Add or Remove Programs. I also have 3.0 installed, if that
makes a difference.

Anyone know what's going on here?

--
Dave Sexton

"Jon Shemitz" <jo*@midnightbeach.comwrote in message
news:45***************@midnightbeach.com...
Morten Wennevik wrote:
>"" is easy to write, easy to read, and near impossible to misunderstand.
It will however create an object where String.Empty would not, but the ""
object is reused throughout the lifespawn of your application so the
difference can therefore be ignored.

I was surprised to read that "" will create an object where
String.Empty will not - surely String.Empty is just a static field
that points to an interned "" constant?

Sure enough, Reflector shows that String.Empty is implemented as

class string
{
static readonly string Empty = "";
}

... yet the below code shows that while both "" and String.Empty are
interned, "" is not reference-equal to String.Empty. What gives? I
thought the intern table was maintained across assembly boundaries, so
it shouldn't matter that String.Empty comes from mscorlib.dll while ""
comes from the app assembly.

//

using System;

namespace StringEmptyTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
Console.WriteLine(String.IsInterned("") != null);
Console.WriteLine(String.IsInterned(String.Empty) != null);
Console.ReadLine();
}
}
}
--

.NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.

Nov 29 '06 #19
Sorry to go OT -- for a monet -- but you're able to load documentation at
msdn2.microsoft.com?
Quite a few people can not load pages at msdn2 for many weeks now and trying
to figure out why.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
Hi Jon,

Your example code has been bothering me - it should work, however it
doesn't and I can't figure out why :p

But if you think that's weird, check out the following documentation I
found on MSDN:

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...ng.intern.aspx

<quote>
Version Considerations
Starting with the .NET Framework version 2.0, there is a behavioral change
in the Intern method. In the following C# code sequence, the variable str1
is assigned a reference to Empty, the variable str2 is assigned the
reference to Empty that is returned by the Intern method, then the
references contained in str1 and str2 are compared for equality.

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
if ((object) str1) == ((object) str2) .

In the .NET Framework version 1.1, str1 and str2 are not equal, but
starting in the .NET Framework version 2.0, str1 and str2 are equal.
</quote>

Not in my test :|

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);

// false
Console.WriteLine((object) str1 == (object) str2);

// false
Console.WriteLine((object) string.Empty == (object) "");

// true
Console.WriteLine((object) "" == (object) "");
Using Reflector I verified that string.Empty is assigned the empty
literal, "", in the class constructor (.cctor). I also verified, through
testing, that interning works across assemblies; so I'm stumped here.

The earliest version of the framework that I have installed on my machine
is 2.0, verified in Add or Remove Programs. I also have 3.0 installed, if
that makes a difference.

Anyone know what's going on here?

--
Dave Sexton

"Jon Shemitz" <jo*@midnightbeach.comwrote in message
news:45***************@midnightbeach.com...
>Morten Wennevik wrote:
>>"" is easy to write, easy to read, and near impossible to misunderstand.
It will however create an object where String.Empty would not, but the
""
object is reused throughout the lifespawn of your application so the
difference can therefore be ignored.

I was surprised to read that "" will create an object where
String.Empty will not - surely String.Empty is just a static field
that points to an interned "" constant?

Sure enough, Reflector shows that String.Empty is implemented as

class string
{
static readonly string Empty = "";
}

... yet the below code shows that while both "" and String.Empty are
interned, "" is not reference-equal to String.Empty. What gives? I
thought the intern table was maintained across assembly boundaries, so
it shouldn't matter that String.Empty comes from mscorlib.dll while ""
comes from the app assembly.

//

using System;

namespace StringEmptyTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
Console.WriteLine(String.IsInterned("") != null);
Console.WriteLine(String.IsInterned(String.Empty) != null);
Console.ReadLine();
}
}
}
--

.NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.


Nov 29 '06 #20
Hi,

I'm one of those people too - no secret here.

It works most of the time for me, but it can be painfully slow or not load
at all sometimes. I assume they are making some major modifications to the
site.

Although, msdn.microsoft.com/library and the search itself seem to work just
fine, but once you click a search result that redirects you to msdn2, it's
20/80 ;)

--
Dave Sexton

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:ur**************@TK2MSFTNGP04.phx.gbl...
Sorry to go OT -- for a monet -- but you're able to load documentation at
msdn2.microsoft.com?
Quite a few people can not load pages at msdn2 for many weeks now and
trying to figure out why.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>Hi Jon,

Your example code has been bothering me - it should work, however it
doesn't and I can't figure out why :p

But if you think that's weird, check out the following documentation I
found on MSDN:

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...ng.intern.aspx

<quote>
Version Considerations
Starting with the .NET Framework version 2.0, there is a behavioral
change in the Intern method. In the following C# code sequence, the
variable str1 is assigned a reference to Empty, the variable str2 is
assigned the reference to Empty that is returned by the Intern method,
then the references contained in str1 and str2 are compared for equality.

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
if ((object) str1) == ((object) str2) .

In the .NET Framework version 1.1, str1 and str2 are not equal, but
starting in the .NET Framework version 2.0, str1 and str2 are equal.
</quote>

Not in my test :|

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);

// false
Console.WriteLine((object) str1 == (object) str2);

// false
Console.WriteLine((object) string.Empty == (object) "");

// true
Console.WriteLine((object) "" == (object) "");
Using Reflector I verified that string.Empty is assigned the empty
literal, "", in the class constructor (.cctor). I also verified, through
testing, that interning works across assemblies; so I'm stumped here.

The earliest version of the framework that I have installed on my machine
is 2.0, verified in Add or Remove Programs. I also have 3.0 installed,
if that makes a difference.

Anyone know what's going on here?

--
Dave Sexton

"Jon Shemitz" <jo*@midnightbeach.comwrote in message
news:45***************@midnightbeach.com...
>>Morten Wennevik wrote:

"" is easy to write, easy to read, and near impossible to
misunderstand.
It will however create an object where String.Empty would not, but the
""
object is reused throughout the lifespawn of your application so the
difference can therefore be ignored.

I was surprised to read that "" will create an object where
String.Empty will not - surely String.Empty is just a static field
that points to an interned "" constant?

Sure enough, Reflector shows that String.Empty is implemented as

class string
{
static readonly string Empty = "";
}

... yet the below code shows that while both "" and String.Empty are
interned, "" is not reference-equal to String.Empty. What gives? I
thought the intern table was maintained across assembly boundaries, so
it shouldn't matter that String.Empty comes from mscorlib.dll while ""
comes from the app assembly.

//

using System;

namespace StringEmptyTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
Console.WriteLine(String.IsInterned("") != null);
Console.WriteLine(String.IsInterned(String.Empty) != null);
Console.ReadLine();
}
}
}
--

.NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.



Nov 29 '06 #21
Like I said, whatever gets you off. It is like starting with a the letter
"p" for all your method arguments. Some do it and some don't.

Gabriel

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:uA**************@TK2MSFTNGP03.phx.gbl...
Hi Gabriel,

I don't think I'd be too concerned if different team members used "" or
string.Empty. I'd leave that up to personal preference. It really isn't
that important, IMO.

--
Dave Sexton

"Gabriel Lozano-Morán" <ab***@frontbridge.comwrote in message
news:un**************@TK2MSFTNGP03.phx.gbl...
>>I personally prefer string.Empty over "" in code. It is just a matter of
flavor but it can be a good thing to make it a guideline whether or not
you to use "" vs string.Empty for the team.

Gabriel Lozano-Morán

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:ex**************@TK2MSFTNGP02.phx.gbl...
>>Hi,

I use string.Empty because that's what everyone I talked to had told me
since the original framework beta.

Personally, I don't really care either way now, but it's just a habit.

If I could shake the OCD involved I might be able to start using ""
instead, which seems cleaner to me ;)

--
Dave Sexton

<an******@hotmail.comwrote in message
news:11********************@j72g2000cwa.googlegr oups.com...
In the past I always used "" everywhere for empty string in my code
without a problem.

Now, do you think I should use String.Empty instead of "" (at all
times) ?

Let me know your thoughts.



Nov 29 '06 #22
Correct at the moment it is only for NGEN-ed assemblies but if I am not
mistaken it is possible that in future versions it will be possible to
disable the intern pool imho that's the reason why the documentation might
seem misleading. Personally I have never understand the need for string
interning and the overhead that comes with it because how many times will
you have two or more exact string literals?

Gabriel

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:ur**************@TK2MSFTNGP03.phx.gbl...
Hi Jon,

Apparently, CompilationRelaxations.NoStringInterning only disables string
interning for the NGEN utility. This setting is automatically applied on
all assemblies compiled by the C# 2.0 compiler, as Mattias already
mentioned, and as you've pointed out Interning is certainly not disabled
in 2.0 :)

The documentation Gabriel has cited is definitely misleading and should be
updated. I don't believe that C# or .NET provides the ability to disable
string interning in code.

"Starting with the .NET Framework version 2.0, you can override the use of
the intern pool when you use the Native Image Generator (Ngen.exe) to
install an assembly to the native image cache on a local computer. For
more information, see Performance Considerations in the Remarks section
for the Intern property." (and by "property" I think they mean "method"
:)

"String.IsInterned Method"
http://msdn2.microsoft.com/en-us/lib...sinterned.aspx

"The .NET Framework version 2.0 introduces the
CompilationRelaxations.NoStringInterning enumeration member. The
NoStringInterning member marks an assembly as not requiring string-literal
interning. You can apply NoStringInterning to an assembly using the
CompilationRelaxationsAttribute attribute. When you use the Native Image
Generator (Ngen.exe) to install that assembly to the native image cache on
the local computer, string interning is not used."

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...rn(vs.80).aspx

--
Dave Sexton

"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
Mattias Sjögren <ma********************@mvps.orgwrote:
>How bizarre. Using that would certainly mean you were no longer using a
language which conformed to the C# language spec. However, you would
have to *explicitly* use that attribute

Actually the C# 2.0 compiler adds this attribute to all assemblies,
unless you explicitly specify otherwise.

Yikes - you're right. Interesting that it doesn't seem to have the
indicated effect. Here's a sample program:

using System;
using System.Diagnostics;

class Test1
{
public static string Empty = "";
}

class Test2
{
public static string Empty = "";
}

class Test
{
static void Main()
{
string s1 = Test1.Empty;
string s2 = Test2.Empty;
Console.WriteLine (object.ReferenceEquals(s1, s2));
}
}

That prints "True" on my box, which will only be true if the strings
are interned. Printing string.IsInterned("x") shows that being interned
too.

Odd. I'm intrigued now...
>Which part of the spec do you mean this would violate? I know that
previous compiler versions sometimes relied on interning to implement
the switch statement for strings, but that doesn't seem to be the case
anymore.

From
http://www.jaggersoft.com/csharp_sta...string-literal

<quote>
Each string literal does not necessarily result in a new string
instance. When two or more string literals that are equivalent
according to the string equality operator (§14.9.7), appear in the same
assembly, these string literals refer to the same string instance.
</quote>

(I'll have to look at how strings are switched now, too. So much to
look at, so little time...)

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

Nov 29 '06 #23
"Gabriel Lozano-Morán" wrote:
>
Correct at the moment it is only for NGEN-ed assemblies but if I am not
mistaken it is possible that in future versions it will be possible to
disable the intern pool imho that's the reason why the documentation might
seem misleading. Personally I have never understand the need for string
interning and the overhead that comes with it because how many times will
you have two or more exact string literals?
Depends on how much HTML/XML you're generating, I guess.

--

..NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.
Nov 29 '06 #24
Misery loves company ;-)

<%= Clinton

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:Ov**************@TK2MSFTNGP03.phx.gbl...
Hi,

I'm one of those people too - no secret here.

It works most of the time for me, but it can be painfully slow or not load
at all sometimes. I assume they are making some major modifications to
the site.

Although, msdn.microsoft.com/library and the search itself seem to work
just fine, but once you click a search result that redirects you to msdn2,
it's 20/80 ;)

--
Dave Sexton

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:ur**************@TK2MSFTNGP04.phx.gbl...
>Sorry to go OT -- for a monet -- but you're able to load documentation at
msdn2.microsoft.com?
Quite a few people can not load pages at msdn2 for many weeks now and
trying to figure out why.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>Hi Jon,

Your example code has been bothering me - it should work, however it
doesn't and I can't figure out why :p

But if you think that's weird, check out the following documentation I
found on MSDN:

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...ng.intern.aspx

<quote>
Version Considerations
Starting with the .NET Framework version 2.0, there is a behavioral
change in the Intern method. In the following C# code sequence, the
variable str1 is assigned a reference to Empty, the variable str2 is
assigned the reference to Empty that is returned by the Intern method,
then the references contained in str1 and str2 are compared for
equality.

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
if ((object) str1) == ((object) str2) .

In the .NET Framework version 1.1, str1 and str2 are not equal, but
starting in the .NET Framework version 2.0, str1 and str2 are equal.
</quote>

Not in my test :|

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);

// false
Console.WriteLine((object) str1 == (object) str2);

// false
Console.WriteLine((object) string.Empty == (object) "");

// true
Console.WriteLine((object) "" == (object) "");
Using Reflector I verified that string.Empty is assigned the empty
literal, "", in the class constructor (.cctor). I also verified,
through testing, that interning works across assemblies; so I'm stumped
here.

The earliest version of the framework that I have installed on my
machine is 2.0, verified in Add or Remove Programs. I also have 3.0
installed, if that makes a difference.

Anyone know what's going on here?

--
Dave Sexton

"Jon Shemitz" <jo*@midnightbeach.comwrote in message
news:45***************@midnightbeach.com...
Morten Wennevik wrote:

"" is easy to write, easy to read, and near impossible to
misunderstand.
It will however create an object where String.Empty would not, but the
""
object is reused throughout the lifespawn of your application so the
difference can therefore be ignored.

I was surprised to read that "" will create an object where
String.Empty will not - surely String.Empty is just a static field
that points to an interned "" constant?

Sure enough, Reflector shows that String.Empty is implemented as

class string
{
static readonly string Empty = "";
}

... yet the below code shows that while both "" and String.Empty are
interned, "" is not reference-equal to String.Empty. What gives? I
thought the intern table was maintained across assembly boundaries, so
it shouldn't matter that String.Empty comes from mscorlib.dll while ""
comes from the app assembly.

//

using System;

namespace StringEmptyTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
Console.WriteLine(String.IsInterned("") != null);
Console.WriteLine(String.IsInterned(String.Empty) != null);
Console.ReadLine();
}
}
}
--

.NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.




Dec 2 '06 #25
Hi Clinton,

:)

Even stranger, FireFox appears to be slower than IE7 when loading msdn2 now
(when it works :)

--
Dave Sexton

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:OW**************@TK2MSFTNGP03.phx.gbl...
Misery loves company ;-)

<%= Clinton

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:Ov**************@TK2MSFTNGP03.phx.gbl...
>Hi,

I'm one of those people too - no secret here.

It works most of the time for me, but it can be painfully slow or not
load at all sometimes. I assume they are making some major modifications
to the site.

Although, msdn.microsoft.com/library and the search itself seem to work
just fine, but once you click a search result that redirects you to
msdn2, it's 20/80 ;)

--
Dave Sexton

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in
message news:ur**************@TK2MSFTNGP04.phx.gbl...
>>Sorry to go OT -- for a monet -- but you're able to load documentation
at msdn2.microsoft.com?
Quite a few people can not load pages at msdn2 for many weeks now and
trying to figure out why.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
Hi Jon,

Your example code has been bothering me - it should work, however it
doesn't and I can't figure out why :p

But if you think that's weird, check out the following documentation I
found on MSDN:

"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...ng.intern.aspx

<quote>
Version Considerations
Starting with the .NET Framework version 2.0, there is a behavioral
change in the Intern method. In the following C# code sequence, the
variable str1 is assigned a reference to Empty, the variable str2 is
assigned the reference to Empty that is returned by the Intern method,
then the references contained in str1 and str2 are compared for
equality.

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
if ((object) str1) == ((object) str2) .

In the .NET Framework version 1.1, str1 and str2 are not equal, but
starting in the .NET Framework version 2.0, str1 and str2 are equal.
</quote>

Not in my test :|

string str1 = String.Empty;
string str2 = String.Intern(String.Empty);

// false
Console.WriteLine((object) str1 == (object) str2);

// false
Console.WriteLine((object) string.Empty == (object) "");

// true
Console.WriteLine((object) "" == (object) "");
Using Reflector I verified that string.Empty is assigned the empty
literal, "", in the class constructor (.cctor). I also verified,
through testing, that interning works across assemblies; so I'm stumped
here.

The earliest version of the framework that I have installed on my
machine is 2.0, verified in Add or Remove Programs. I also have 3.0
installed, if that makes a difference.

Anyone know what's going on here?

--
Dave Sexton

"Jon Shemitz" <jo*@midnightbeach.comwrote in message
news:45***************@midnightbeach.com...
Morten Wennevik wrote:
>
>"" is easy to write, easy to read, and near impossible to
>misunderstand.
>It will however create an object where String.Empty would not, but
>the ""
>object is reused throughout the lifespawn of your application so the
>difference can therefore be ignored.
>
I was surprised to read that "" will create an object where
String.Empty will not - surely String.Empty is just a static field
that points to an interned "" constant?
>
Sure enough, Reflector shows that String.Empty is implemented as
>
class string
{
static readonly string Empty = "";
}
>
... yet the below code shows that while both "" and String.Empty are
interned, "" is not reference-equal to String.Empty. What gives? I
thought the intern table was maintained across assembly boundaries, so
it shouldn't matter that String.Empty comes from mscorlib.dll while ""
comes from the app assembly.
>
//
>
using System;
>
namespace StringEmptyTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
Console.WriteLine(String.IsInterned("") != null);
Console.WriteLine(String.IsInterned(String.Empty) != null);
Console.ReadLine();
}
}
}
>
>
--
>
.NET 2.0 for Delphi Programmers
www.midnightbeach.com/.net
What you need to know.




Dec 2 '06 #26
I urge you to respond to my recent news article posted in several Microsoft
newsgroups related to MSDN and ASP.NET development. The subject is

"For Microsoft Partners and Customers Who Can't Download or Access MSDN2..."

Take your own stance of course but please let your voice be heard about
these server failures.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h


"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:um**************@TK2MSFTNGP03.phx.gbl...
Hi Clinton,

:)

Even stranger, FireFox appears to be slower than IE7 when loading msdn2
now (when it works :)

--
Dave Sexton

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:OW**************@TK2MSFTNGP03.phx.gbl...
>Misery loves company ;-)

<%= Clinton

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:Ov**************@TK2MSFTNGP03.phx.gbl...
>>Hi,

I'm one of those people too - no secret here.

It works most of the time for me, but it can be painfully slow or not
load at all sometimes. I assume they are making some major
modifications to the site.

Although, msdn.microsoft.com/library and the search itself seem to work
just fine, but once you click a search result that redirects you to
msdn2, it's 20/80 ;)

--
Dave Sexton

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in
message news:ur**************@TK2MSFTNGP04.phx.gbl...
Sorry to go OT -- for a monet -- but you're able to load documentation
at msdn2.microsoft.com?
Quite a few people can not load pages at msdn2 for many weeks now and
trying to figure out why.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h

"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl. ..
Hi Jon,
>
Your example code has been bothering me - it should work, however it
doesn't and I can't figure out why :p
>
But if you think that's weird, check out the following documentation I
found on MSDN:
>
"String.Intern Method"
http://msdn2.microsoft.com/en-us/lib...ng.intern.aspx
>
<quote>
Version Considerations
Starting with the .NET Framework version 2.0, there is a behavioral
change in the Intern method. In the following C# code sequence, the
variable str1 is assigned a reference to Empty, the variable str2 is
assigned the reference to Empty that is returned by the Intern method,
then the references contained in str1 and str2 are compared for
equality.
>
string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
if ((object) str1) == ((object) str2) .
>
In the .NET Framework version 1.1, str1 and str2 are not equal, but
starting in the .NET Framework version 2.0, str1 and str2 are equal.
</quote>
>
Not in my test :|
>
string str1 = String.Empty;
string str2 = String.Intern(String.Empty);
>
// false
Console.WriteLine((object) str1 == (object) str2);
>
// false
Console.WriteLine((object) string.Empty == (object) "");
>
// true
Console.WriteLine((object) "" == (object) "");
>
>
Using Reflector I verified that string.Empty is assigned the empty
literal, "", in the class constructor (.cctor). I also verified,
through testing, that interning works across assemblies; so I'm
stumped here.
>
The earliest version of the framework that I have installed on my
machine is 2.0, verified in Add or Remove Programs. I also have 3.0
installed, if that makes a difference.
>
Anyone know what's going on here?
>
--
Dave Sexton
>
"Jon Shemitz" <jo*@midnightbeach.comwrote in message
news:45***************@midnightbeach.com...
>Morten Wennevik wrote:
>>
>>"" is easy to write, easy to read, and near impossible to
>>misunderstand.
>>It will however create an object where String.Empty would not, but
>>the ""
>>object is reused throughout the lifespawn of your application so the
>>difference can therefore be ignored.
>>
>I was surprised to read that "" will create an object where
>String.Empty will not - surely String.Empty is just a static field
>that points to an interned "" constant?
>>
>Sure enough, Reflector shows that String.Empty is implemented as
>>
> class string
> {
> static readonly string Empty = "";
> }
>>
>... yet the below code shows that while both "" and String.Empty are
>interned, "" is not reference-equal to String.Empty. What gives? I
>thought the intern table was maintained across assembly boundaries,
>so
>it shouldn't matter that String.Empty comes from mscorlib.dll while
>""
>comes from the app assembly.
>>
>//
>>
>using System;
>>
>namespace StringEmptyTest
>{
> class Program
> {
> static void Main(string[] args)
> {
> Console.WriteLine(Object.ReferenceEquals(String.Em pty, ""));
> Console.WriteLine(String.IsInterned("") != null);
> Console.WriteLine(String.IsInterned(String.Empty) != null);
> Console.ReadLine();
> }
> }
>}
>>
>>
>--
>>
>.NET 2.0 for Delphi Programmers
>www.midnightbeach.com/.net
>What you need to know.
>
>




Dec 20 '06 #27

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

Similar topics

8
by: Jaime Wyant | last post by:
Will someone explain this to me? >>> "test".find("") 0 Why is the empty string found at position 0? Thanks! jw
4
by: Klaus Petersen | last post by:
Hi ng. I have a varchar field in my table, called Name. I wanna do a selection, which is ordered by whether this field is empty or not. E.g. something like: SELECT
4
by: Marcin Dobrucki | last post by:
I've been having some problems with a parse error that I can't figure out (PHP 4.3.11 on Solaris9). Sample code: <?php // getting strange parse errors on this class A { var $value; function...
8
by: Peter Merwood | last post by:
I'm using some sample code from MSDN. The code includes the following statement: Dim content as = .Empty I'm not familiar with the use of the square brackets. Can someone please explain to...
9
by: Fei Liu | last post by:
In Accellerated C++, the author recommends that in a header file one should not declare using std::string, using std::vector etc instead one should directly specify the namespace specifier in...
10
by: mcbobin | last post by:
Hi, Here's hoping someone can help... I'm using a stored procedure to return a single row of data ie a DataRow e.g. public static DataRow GetManualDailySplits(string prmLocationID, string
10
by: =?Utf-8?B?RWxlbmE=?= | last post by:
I am surprised to discover that c# automatically converts an integer to a string when concatenating with the "+" operator. I thought c# was supposed to be very strict about types. Doesn't it seem...
6
by: =?Utf-8?B?SmVmZg==?= | last post by:
I thought this would already be covered here, but my search turned up nothing. In VS2005, if I use "String" to define a new variable/class, it colors it in the Aqua color as it does other...
10
by: Dave griffiths | last post by:
Hi all Using VB2005 on Vista with a Norwegian locale setup. The test program has 3 textboxes the sum held in txt3. Using the code below, txt2 conversion causes an error when it is left empty....
21
by: Sami | last post by:
string = "" or string = string.Empty? should is the proper way? Sami
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.