On Thursday, 25 September 2014 at 05:29:37 UTC, AsmMan wrote:
Does D has C#'s string.Empty?
string.init ?
----
string a;
a = string.init;
assert( a == "");
----
does the job for the type string at least.
SlomoTheBrave via Digitalmars-d-learn Wed, 24 Sep 2014 23:45:42 -0700
On Thursday, 25 September 2014 at 05:29:37 UTC, AsmMan wrote:
Does D has C#'s string.Empty?
string.init ?
----
string a;
a = string.init;
assert( a == "");
----
does the job for the type string at least.