String whitespacesUnit-testing the importing of data into a databaseIn-memory cache implementation revisitedRolling my own Configuration with UISimple and reusable system for user registration and tracking and auto-updatesMVVM: Am I doing it right?Alternative to the Josh Bloch Builder pattern in C#Singleton with readonly parametersVBA Text Class, sort of like .NETWeb-app for tracking containers

Why is a road bike faster than a city bike with the same effort? How much faster it can be?

Help in drawing resonance structures in case of polybasic acids

Whaling ship logistics

Why does my browser attempt to download pages from http://clhs.lisp.se instead of viewing them normally?

Is it ok if I haven't decided my research topic when I first meet with a potential phd advisor?

Why is STARTTLS still used?

Why did UK NHS pay for homeopathic treatments?

Clear text passwords in Unix

Beyond Futuristic Technology for an Alien Warship?

Is it acceptable to say that a reviewer's concern is not going to be addressed because then the paper would be too long?

Diminutive -ula

Why did the Soviet Union not "grant" Inner Mongolia to Mongolia after World War Two?

Algorithm that generates orthogonal vectors: C++ implementation

What should I consider when deciding whether to delay an exam?

Is the iPhone's eSim for the home or roaming carrier?

Practicality of 30 year fixed mortgage at 55 years of age

Why is volatility skew/smile for long term options flatter compare to short term options?

String whitespaces

Difference between "rip up" and "rip down"

When does a Sea Sorcerer choose to use Curse of the Sea's additional effect?

There are 51 natural numbers between 1-100, proof that there are 2 numbers such that the difference between them equals to 5

If a spaceship ran out of fuel somewhere in space between Earth and Mars, does it slowly drift off to the Sun?

My manager quit. Should I agree to defer wage increase to accommodate budget concerns?

Should the average user with no special access rights be worried about SMS-based 2FA being theoretically interceptable?



String whitespaces


Unit-testing the importing of data into a databaseIn-memory cache implementation revisitedRolling my own Configuration with UISimple and reusable system for user registration and tracking and auto-updatesMVVM: Am I doing it right?Alternative to the Josh Bloch Builder pattern in C#Singleton with readonly parametersVBA Text Class, sort of like .NETWeb-app for tracking containers






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1












$begingroup$


Here is a shortest possible syntax for replacing whitespaces with null and throwing an exception where it is not allowed:



public class Name

string _first;
public string First

get => _first;
set => _first = (Optional)value;


string _middle;
public string Middle

get => _middle;
set => _middle = (Required)value;




Where:



public class Optional

public static explicit operator Optional(string text) => new Optional(text);
public static implicit operator string(Optional optional) => optional.Text;
Optional(string text) => Text = IsNullOrWhiteSpace(text) ? null : text;
string Text get;



And:



public class Required

public static explicit operator Required(string text) => new Required((Optional)text);
public static implicit operator string(Required required) => required.Text;
Required(string text) => Text = text ?? throw new FormatException();
string Text get;



P.S. Value modification on property assignment is not recommended, but could be very handy sometimes :)



Reasoning Update



@visualmelon I did it to have a chance to say the following: 😊



I do assume that OOD and a scalable language paradigm is the only way to keep high morale of the software development process. Seriously, the price of not knowing the default visibility of a class API member is tremendous. Damn, people, learn it and stop this ongoing customer robbery. This industry is ruined by cheap labor, the believe that everybody could code and that excessive usage of POCO could substitute basic understanding of the OOD principals, but it is wrong. One need a totally screwed economic environment to reason on this stuff positively. (My current project has 80% code redundancy! Start using ValueObjects, switch to Event Sourcing and all those left hand-right hand excessive assignments will be gone with the wind reducing the cost of support tremendously…)



Static functions vs custom types: static functions require extra “using static” directive while classes are not. And I do believe that it is totally OK to have a concept of Optional and Required string to be captured as classes in, let’s say, text processing domain. It could sound out of context somewhere else, but domain namespaces do matter… I would use different exception type, different names instead of Optional and Required in the different wider context, something like (NullIfWhitespace)text and (ThrowIfWhitespace)text.



P.S. Cracking software interviews book suggest to do not mention .NET experience while being interviewed for a non C# position. I am personally is just ashamed but understood the reason. We should be more open to gaining efficiency everywhere we could.










share|improve this question











$endgroup$




















    1












    $begingroup$


    Here is a shortest possible syntax for replacing whitespaces with null and throwing an exception where it is not allowed:



    public class Name

    string _first;
    public string First

    get => _first;
    set => _first = (Optional)value;


    string _middle;
    public string Middle

    get => _middle;
    set => _middle = (Required)value;




    Where:



    public class Optional

    public static explicit operator Optional(string text) => new Optional(text);
    public static implicit operator string(Optional optional) => optional.Text;
    Optional(string text) => Text = IsNullOrWhiteSpace(text) ? null : text;
    string Text get;



    And:



    public class Required

    public static explicit operator Required(string text) => new Required((Optional)text);
    public static implicit operator string(Required required) => required.Text;
    Required(string text) => Text = text ?? throw new FormatException();
    string Text get;



    P.S. Value modification on property assignment is not recommended, but could be very handy sometimes :)



    Reasoning Update



    @visualmelon I did it to have a chance to say the following: 😊



    I do assume that OOD and a scalable language paradigm is the only way to keep high morale of the software development process. Seriously, the price of not knowing the default visibility of a class API member is tremendous. Damn, people, learn it and stop this ongoing customer robbery. This industry is ruined by cheap labor, the believe that everybody could code and that excessive usage of POCO could substitute basic understanding of the OOD principals, but it is wrong. One need a totally screwed economic environment to reason on this stuff positively. (My current project has 80% code redundancy! Start using ValueObjects, switch to Event Sourcing and all those left hand-right hand excessive assignments will be gone with the wind reducing the cost of support tremendously…)



    Static functions vs custom types: static functions require extra “using static” directive while classes are not. And I do believe that it is totally OK to have a concept of Optional and Required string to be captured as classes in, let’s say, text processing domain. It could sound out of context somewhere else, but domain namespaces do matter… I would use different exception type, different names instead of Optional and Required in the different wider context, something like (NullIfWhitespace)text and (ThrowIfWhitespace)text.



    P.S. Cracking software interviews book suggest to do not mention .NET experience while being interviewed for a non C# position. I am personally is just ashamed but understood the reason. We should be more open to gaining efficiency everywhere we could.










    share|improve this question











    $endgroup$
















      1












      1








      1





      $begingroup$


      Here is a shortest possible syntax for replacing whitespaces with null and throwing an exception where it is not allowed:



      public class Name

      string _first;
      public string First

      get => _first;
      set => _first = (Optional)value;


      string _middle;
      public string Middle

      get => _middle;
      set => _middle = (Required)value;




      Where:



      public class Optional

      public static explicit operator Optional(string text) => new Optional(text);
      public static implicit operator string(Optional optional) => optional.Text;
      Optional(string text) => Text = IsNullOrWhiteSpace(text) ? null : text;
      string Text get;



      And:



      public class Required

      public static explicit operator Required(string text) => new Required((Optional)text);
      public static implicit operator string(Required required) => required.Text;
      Required(string text) => Text = text ?? throw new FormatException();
      string Text get;



      P.S. Value modification on property assignment is not recommended, but could be very handy sometimes :)



      Reasoning Update



      @visualmelon I did it to have a chance to say the following: 😊



      I do assume that OOD and a scalable language paradigm is the only way to keep high morale of the software development process. Seriously, the price of not knowing the default visibility of a class API member is tremendous. Damn, people, learn it and stop this ongoing customer robbery. This industry is ruined by cheap labor, the believe that everybody could code and that excessive usage of POCO could substitute basic understanding of the OOD principals, but it is wrong. One need a totally screwed economic environment to reason on this stuff positively. (My current project has 80% code redundancy! Start using ValueObjects, switch to Event Sourcing and all those left hand-right hand excessive assignments will be gone with the wind reducing the cost of support tremendously…)



      Static functions vs custom types: static functions require extra “using static” directive while classes are not. And I do believe that it is totally OK to have a concept of Optional and Required string to be captured as classes in, let’s say, text processing domain. It could sound out of context somewhere else, but domain namespaces do matter… I would use different exception type, different names instead of Optional and Required in the different wider context, something like (NullIfWhitespace)text and (ThrowIfWhitespace)text.



      P.S. Cracking software interviews book suggest to do not mention .NET experience while being interviewed for a non C# position. I am personally is just ashamed but understood the reason. We should be more open to gaining efficiency everywhere we could.










      share|improve this question











      $endgroup$




      Here is a shortest possible syntax for replacing whitespaces with null and throwing an exception where it is not allowed:



      public class Name

      string _first;
      public string First

      get => _first;
      set => _first = (Optional)value;


      string _middle;
      public string Middle

      get => _middle;
      set => _middle = (Required)value;




      Where:



      public class Optional

      public static explicit operator Optional(string text) => new Optional(text);
      public static implicit operator string(Optional optional) => optional.Text;
      Optional(string text) => Text = IsNullOrWhiteSpace(text) ? null : text;
      string Text get;



      And:



      public class Required

      public static explicit operator Required(string text) => new Required((Optional)text);
      public static implicit operator string(Required required) => required.Text;
      Required(string text) => Text = text ?? throw new FormatException();
      string Text get;



      P.S. Value modification on property assignment is not recommended, but could be very handy sometimes :)



      Reasoning Update



      @visualmelon I did it to have a chance to say the following: 😊



      I do assume that OOD and a scalable language paradigm is the only way to keep high morale of the software development process. Seriously, the price of not knowing the default visibility of a class API member is tremendous. Damn, people, learn it and stop this ongoing customer robbery. This industry is ruined by cheap labor, the believe that everybody could code and that excessive usage of POCO could substitute basic understanding of the OOD principals, but it is wrong. One need a totally screwed economic environment to reason on this stuff positively. (My current project has 80% code redundancy! Start using ValueObjects, switch to Event Sourcing and all those left hand-right hand excessive assignments will be gone with the wind reducing the cost of support tremendously…)



      Static functions vs custom types: static functions require extra “using static” directive while classes are not. And I do believe that it is totally OK to have a concept of Optional and Required string to be captured as classes in, let’s say, text processing domain. It could sound out of context somewhere else, but domain namespaces do matter… I would use different exception type, different names instead of Optional and Required in the different wider context, something like (NullIfWhitespace)text and (ThrowIfWhitespace)text.



      P.S. Cracking software interviews book suggest to do not mention .NET experience while being interviewed for a non C# position. I am personally is just ashamed but understood the reason. We should be more open to gaining efficiency everywhere we could.







      c# strings null






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 3 hours ago







      Dmitry Nogin

















      asked 8 hours ago









      Dmitry NoginDmitry Nogin

      3,2691 gold badge10 silver badges31 bronze badges




      3,2691 gold badge10 silver badges31 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          2














          $begingroup$

          Not sure that adding a 7-line validator class per validation rule (plus typecasting abuse) is any shorter/better than a set of more straightforward composable validating one-liners, something like:



          public static class ValidatingTransformers

          public static T ThrowsIfNull<T>(this T s, string msg = "") =>
          s != null ? s : throw new ArgumentException(msg);
          public static string ThrowsIfEmpty(this string s, string msg = "") =>
          !string.IsNullOrWhiteSpace(s) ? s : throw new ArgumentException(msg);

          public static string EmptyIfNull(this string s) => s ?? "";
          public static string NullIfEmpty(this string s) => !string.IsNullOrWhiteSpace(s) ? s : null;

          ... et cetera




          Some other thoughts:



          1. Replacing empty/whitespace strings with null does not look like a great idea to me. Because, well, the null and the NullReferenceException. An empty string looks like a safer alternative.

          2. I'd avoid property setters and mutating a state, even if setters protect invariants. Much simpler, shorter, and safer alternative:

          public class Name

          public string First get;
          public string Middle get;
          public string Last get;

          public Name(string first, string middle, string last)

          First = first.NullIfEmpty();
          Middle = middle.ThrowsIfNull("middle name must not be null");
          Last = last.ThrowsIfEmpty("last name must not be empty");




          Shorter code, one single place for all validations, never ever get an object in an inconsistent state, no issues with concurrent mutations.






          share|improve this answer










          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          $endgroup$














          • $begingroup$
            +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
            $endgroup$
            – Dmitry Nogin
            19 mins ago










          • $begingroup$
            Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
            $endgroup$
            – Dmitry Nogin
            15 mins ago


















          1














          $begingroup$

          Edit: the tone of this might seem a bit negative, so I'll add that this was a fun one to review in hopes of lightening the mood ;)



          Miscellaneous thoughts:



          • This is horrifying! Why did you do this?!


          • You can just about get away with this for properties, but for method calls with required/optional fields, a FormatException will be inadequate (an ArgumentException telling the caller which argument went wrong is important), which rather limits the scope of this technique.


          • Because the thing is type specific, you could give it a sensible name (e.g. OptionalString), make both conversions implicit, and use it as the field type. This would required even less syntax, and would be somewhat less opaque to the maintainer who has to live with this.


          • These need documentation: it's not obvious that an Optional should convert "" to null: this is enough to put me off it completely.



          • You can get this 'low-char-count syntax by using a static using and providing these as static methods to a static class. The advantages would include:



            • It's not horrifying

            • It requires less code, because you don't have to build a whole type and its conversions for each sort of string

            • You can't misuse the types in ways you didn't intend, and they don't appear everywhere

            • You can throw the static methods at a delegate if you have need

            • It's not horrifying

            • People who don't hate themselves can use the fully qualified name

            • It won't incur an allocation every time you assign a value (though using structs would address this already)

            • You have greater freedom with the type of checks you can perform (e.g. multiple parameters)

            • It will be easier to document, because the API will be single method, not a type+stuff

            • It's not horrifying


          • It's good that the conversion to the types is an explicit one, as this limits the scope for things going wrong with the intended usage.


          • It would be nice if the Text members were explicitly private, so there was no question as to your intentions.

          • I personally do not like the expression-bodied syntax for constructors, but that's probably just me.





          share|improve this answer











          $endgroup$










          • 2




            $begingroup$
            Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
            $endgroup$
            – Bronx
            5 hours ago










          • $begingroup$
            @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
            $endgroup$
            – VisualMelon
            5 hours ago










          • $begingroup$
            @VisualMelon please see the reasoning update above :)
            $endgroup$
            – Dmitry Nogin
            3 hours ago













          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "196"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f229477%2fstring-whitespaces%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          $begingroup$

          Not sure that adding a 7-line validator class per validation rule (plus typecasting abuse) is any shorter/better than a set of more straightforward composable validating one-liners, something like:



          public static class ValidatingTransformers

          public static T ThrowsIfNull<T>(this T s, string msg = "") =>
          s != null ? s : throw new ArgumentException(msg);
          public static string ThrowsIfEmpty(this string s, string msg = "") =>
          !string.IsNullOrWhiteSpace(s) ? s : throw new ArgumentException(msg);

          public static string EmptyIfNull(this string s) => s ?? "";
          public static string NullIfEmpty(this string s) => !string.IsNullOrWhiteSpace(s) ? s : null;

          ... et cetera




          Some other thoughts:



          1. Replacing empty/whitespace strings with null does not look like a great idea to me. Because, well, the null and the NullReferenceException. An empty string looks like a safer alternative.

          2. I'd avoid property setters and mutating a state, even if setters protect invariants. Much simpler, shorter, and safer alternative:

          public class Name

          public string First get;
          public string Middle get;
          public string Last get;

          public Name(string first, string middle, string last)

          First = first.NullIfEmpty();
          Middle = middle.ThrowsIfNull("middle name must not be null");
          Last = last.ThrowsIfEmpty("last name must not be empty");




          Shorter code, one single place for all validations, never ever get an object in an inconsistent state, no issues with concurrent mutations.






          share|improve this answer










          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          $endgroup$














          • $begingroup$
            +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
            $endgroup$
            – Dmitry Nogin
            19 mins ago










          • $begingroup$
            Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
            $endgroup$
            – Dmitry Nogin
            15 mins ago















          2














          $begingroup$

          Not sure that adding a 7-line validator class per validation rule (plus typecasting abuse) is any shorter/better than a set of more straightforward composable validating one-liners, something like:



          public static class ValidatingTransformers

          public static T ThrowsIfNull<T>(this T s, string msg = "") =>
          s != null ? s : throw new ArgumentException(msg);
          public static string ThrowsIfEmpty(this string s, string msg = "") =>
          !string.IsNullOrWhiteSpace(s) ? s : throw new ArgumentException(msg);

          public static string EmptyIfNull(this string s) => s ?? "";
          public static string NullIfEmpty(this string s) => !string.IsNullOrWhiteSpace(s) ? s : null;

          ... et cetera




          Some other thoughts:



          1. Replacing empty/whitespace strings with null does not look like a great idea to me. Because, well, the null and the NullReferenceException. An empty string looks like a safer alternative.

          2. I'd avoid property setters and mutating a state, even if setters protect invariants. Much simpler, shorter, and safer alternative:

          public class Name

          public string First get;
          public string Middle get;
          public string Last get;

          public Name(string first, string middle, string last)

          First = first.NullIfEmpty();
          Middle = middle.ThrowsIfNull("middle name must not be null");
          Last = last.ThrowsIfEmpty("last name must not be empty");




          Shorter code, one single place for all validations, never ever get an object in an inconsistent state, no issues with concurrent mutations.






          share|improve this answer










          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          $endgroup$














          • $begingroup$
            +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
            $endgroup$
            – Dmitry Nogin
            19 mins ago










          • $begingroup$
            Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
            $endgroup$
            – Dmitry Nogin
            15 mins ago













          2














          2










          2







          $begingroup$

          Not sure that adding a 7-line validator class per validation rule (plus typecasting abuse) is any shorter/better than a set of more straightforward composable validating one-liners, something like:



          public static class ValidatingTransformers

          public static T ThrowsIfNull<T>(this T s, string msg = "") =>
          s != null ? s : throw new ArgumentException(msg);
          public static string ThrowsIfEmpty(this string s, string msg = "") =>
          !string.IsNullOrWhiteSpace(s) ? s : throw new ArgumentException(msg);

          public static string EmptyIfNull(this string s) => s ?? "";
          public static string NullIfEmpty(this string s) => !string.IsNullOrWhiteSpace(s) ? s : null;

          ... et cetera




          Some other thoughts:



          1. Replacing empty/whitespace strings with null does not look like a great idea to me. Because, well, the null and the NullReferenceException. An empty string looks like a safer alternative.

          2. I'd avoid property setters and mutating a state, even if setters protect invariants. Much simpler, shorter, and safer alternative:

          public class Name

          public string First get;
          public string Middle get;
          public string Last get;

          public Name(string first, string middle, string last)

          First = first.NullIfEmpty();
          Middle = middle.ThrowsIfNull("middle name must not be null");
          Last = last.ThrowsIfEmpty("last name must not be empty");




          Shorter code, one single place for all validations, never ever get an object in an inconsistent state, no issues with concurrent mutations.






          share|improve this answer










          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          $endgroup$



          Not sure that adding a 7-line validator class per validation rule (plus typecasting abuse) is any shorter/better than a set of more straightforward composable validating one-liners, something like:



          public static class ValidatingTransformers

          public static T ThrowsIfNull<T>(this T s, string msg = "") =>
          s != null ? s : throw new ArgumentException(msg);
          public static string ThrowsIfEmpty(this string s, string msg = "") =>
          !string.IsNullOrWhiteSpace(s) ? s : throw new ArgumentException(msg);

          public static string EmptyIfNull(this string s) => s ?? "";
          public static string NullIfEmpty(this string s) => !string.IsNullOrWhiteSpace(s) ? s : null;

          ... et cetera




          Some other thoughts:



          1. Replacing empty/whitespace strings with null does not look like a great idea to me. Because, well, the null and the NullReferenceException. An empty string looks like a safer alternative.

          2. I'd avoid property setters and mutating a state, even if setters protect invariants. Much simpler, shorter, and safer alternative:

          public class Name

          public string First get;
          public string Middle get;
          public string Last get;

          public Name(string first, string middle, string last)

          First = first.NullIfEmpty();
          Middle = middle.ThrowsIfNull("middle name must not be null");
          Last = last.ThrowsIfEmpty("last name must not be empty");




          Shorter code, one single place for all validations, never ever get an object in an inconsistent state, no issues with concurrent mutations.







          share|improve this answer










          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.








          share|improve this answer



          share|improve this answer








          edited 10 mins ago









          Confettimaker

          5305 silver badges17 bronze badges




          5305 silver badges17 bronze badges






          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.








          answered 27 mins ago









          BronxBronx

          1212 bronze badges




          1212 bronze badges




          New contributor



          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




          New contributor




          Bronx is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
















          • $begingroup$
            +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
            $endgroup$
            – Dmitry Nogin
            19 mins ago










          • $begingroup$
            Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
            $endgroup$
            – Dmitry Nogin
            15 mins ago
















          • $begingroup$
            +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
            $endgroup$
            – Dmitry Nogin
            19 mins ago










          • $begingroup$
            Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
            $endgroup$
            – Dmitry Nogin
            15 mins ago















          $begingroup$
          +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
          $endgroup$
          – Dmitry Nogin
          19 mins ago




          $begingroup$
          +1, yes - I used extension methods before. The problem is - invoking a method on the null reference makes my feeling scream a way more than a type cast. Would it still be a typecasting abuse for you if relevant model names be used, like (Text)str or (TextOrNull)str for the same purposes?
          $endgroup$
          – Dmitry Nogin
          19 mins ago












          $begingroup$
          Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
          $endgroup$
          – Dmitry Nogin
          15 mins ago




          $begingroup$
          Type cast exception will look reasonable then for (Text) as no white spaces are allowed for the type.
          $endgroup$
          – Dmitry Nogin
          15 mins ago













          1














          $begingroup$

          Edit: the tone of this might seem a bit negative, so I'll add that this was a fun one to review in hopes of lightening the mood ;)



          Miscellaneous thoughts:



          • This is horrifying! Why did you do this?!


          • You can just about get away with this for properties, but for method calls with required/optional fields, a FormatException will be inadequate (an ArgumentException telling the caller which argument went wrong is important), which rather limits the scope of this technique.


          • Because the thing is type specific, you could give it a sensible name (e.g. OptionalString), make both conversions implicit, and use it as the field type. This would required even less syntax, and would be somewhat less opaque to the maintainer who has to live with this.


          • These need documentation: it's not obvious that an Optional should convert "" to null: this is enough to put me off it completely.



          • You can get this 'low-char-count syntax by using a static using and providing these as static methods to a static class. The advantages would include:



            • It's not horrifying

            • It requires less code, because you don't have to build a whole type and its conversions for each sort of string

            • You can't misuse the types in ways you didn't intend, and they don't appear everywhere

            • You can throw the static methods at a delegate if you have need

            • It's not horrifying

            • People who don't hate themselves can use the fully qualified name

            • It won't incur an allocation every time you assign a value (though using structs would address this already)

            • You have greater freedom with the type of checks you can perform (e.g. multiple parameters)

            • It will be easier to document, because the API will be single method, not a type+stuff

            • It's not horrifying


          • It's good that the conversion to the types is an explicit one, as this limits the scope for things going wrong with the intended usage.


          • It would be nice if the Text members were explicitly private, so there was no question as to your intentions.

          • I personally do not like the expression-bodied syntax for constructors, but that's probably just me.





          share|improve this answer











          $endgroup$










          • 2




            $begingroup$
            Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
            $endgroup$
            – Bronx
            5 hours ago










          • $begingroup$
            @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
            $endgroup$
            – VisualMelon
            5 hours ago










          • $begingroup$
            @VisualMelon please see the reasoning update above :)
            $endgroup$
            – Dmitry Nogin
            3 hours ago















          1














          $begingroup$

          Edit: the tone of this might seem a bit negative, so I'll add that this was a fun one to review in hopes of lightening the mood ;)



          Miscellaneous thoughts:



          • This is horrifying! Why did you do this?!


          • You can just about get away with this for properties, but for method calls with required/optional fields, a FormatException will be inadequate (an ArgumentException telling the caller which argument went wrong is important), which rather limits the scope of this technique.


          • Because the thing is type specific, you could give it a sensible name (e.g. OptionalString), make both conversions implicit, and use it as the field type. This would required even less syntax, and would be somewhat less opaque to the maintainer who has to live with this.


          • These need documentation: it's not obvious that an Optional should convert "" to null: this is enough to put me off it completely.



          • You can get this 'low-char-count syntax by using a static using and providing these as static methods to a static class. The advantages would include:



            • It's not horrifying

            • It requires less code, because you don't have to build a whole type and its conversions for each sort of string

            • You can't misuse the types in ways you didn't intend, and they don't appear everywhere

            • You can throw the static methods at a delegate if you have need

            • It's not horrifying

            • People who don't hate themselves can use the fully qualified name

            • It won't incur an allocation every time you assign a value (though using structs would address this already)

            • You have greater freedom with the type of checks you can perform (e.g. multiple parameters)

            • It will be easier to document, because the API will be single method, not a type+stuff

            • It's not horrifying


          • It's good that the conversion to the types is an explicit one, as this limits the scope for things going wrong with the intended usage.


          • It would be nice if the Text members were explicitly private, so there was no question as to your intentions.

          • I personally do not like the expression-bodied syntax for constructors, but that's probably just me.





          share|improve this answer











          $endgroup$










          • 2




            $begingroup$
            Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
            $endgroup$
            – Bronx
            5 hours ago










          • $begingroup$
            @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
            $endgroup$
            – VisualMelon
            5 hours ago










          • $begingroup$
            @VisualMelon please see the reasoning update above :)
            $endgroup$
            – Dmitry Nogin
            3 hours ago













          1














          1










          1







          $begingroup$

          Edit: the tone of this might seem a bit negative, so I'll add that this was a fun one to review in hopes of lightening the mood ;)



          Miscellaneous thoughts:



          • This is horrifying! Why did you do this?!


          • You can just about get away with this for properties, but for method calls with required/optional fields, a FormatException will be inadequate (an ArgumentException telling the caller which argument went wrong is important), which rather limits the scope of this technique.


          • Because the thing is type specific, you could give it a sensible name (e.g. OptionalString), make both conversions implicit, and use it as the field type. This would required even less syntax, and would be somewhat less opaque to the maintainer who has to live with this.


          • These need documentation: it's not obvious that an Optional should convert "" to null: this is enough to put me off it completely.



          • You can get this 'low-char-count syntax by using a static using and providing these as static methods to a static class. The advantages would include:



            • It's not horrifying

            • It requires less code, because you don't have to build a whole type and its conversions for each sort of string

            • You can't misuse the types in ways you didn't intend, and they don't appear everywhere

            • You can throw the static methods at a delegate if you have need

            • It's not horrifying

            • People who don't hate themselves can use the fully qualified name

            • It won't incur an allocation every time you assign a value (though using structs would address this already)

            • You have greater freedom with the type of checks you can perform (e.g. multiple parameters)

            • It will be easier to document, because the API will be single method, not a type+stuff

            • It's not horrifying


          • It's good that the conversion to the types is an explicit one, as this limits the scope for things going wrong with the intended usage.


          • It would be nice if the Text members were explicitly private, so there was no question as to your intentions.

          • I personally do not like the expression-bodied syntax for constructors, but that's probably just me.





          share|improve this answer











          $endgroup$



          Edit: the tone of this might seem a bit negative, so I'll add that this was a fun one to review in hopes of lightening the mood ;)



          Miscellaneous thoughts:



          • This is horrifying! Why did you do this?!


          • You can just about get away with this for properties, but for method calls with required/optional fields, a FormatException will be inadequate (an ArgumentException telling the caller which argument went wrong is important), which rather limits the scope of this technique.


          • Because the thing is type specific, you could give it a sensible name (e.g. OptionalString), make both conversions implicit, and use it as the field type. This would required even less syntax, and would be somewhat less opaque to the maintainer who has to live with this.


          • These need documentation: it's not obvious that an Optional should convert "" to null: this is enough to put me off it completely.



          • You can get this 'low-char-count syntax by using a static using and providing these as static methods to a static class. The advantages would include:



            • It's not horrifying

            • It requires less code, because you don't have to build a whole type and its conversions for each sort of string

            • You can't misuse the types in ways you didn't intend, and they don't appear everywhere

            • You can throw the static methods at a delegate if you have need

            • It's not horrifying

            • People who don't hate themselves can use the fully qualified name

            • It won't incur an allocation every time you assign a value (though using structs would address this already)

            • You have greater freedom with the type of checks you can perform (e.g. multiple parameters)

            • It will be easier to document, because the API will be single method, not a type+stuff

            • It's not horrifying


          • It's good that the conversion to the types is an explicit one, as this limits the scope for things going wrong with the intended usage.


          • It would be nice if the Text members were explicitly private, so there was no question as to your intentions.

          • I personally do not like the expression-bodied syntax for constructors, but that's probably just me.






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 5 hours ago

























          answered 6 hours ago









          VisualMelonVisualMelon

          6,47215 silver badges44 bronze badges




          6,47215 silver badges44 bronze badges










          • 2




            $begingroup$
            Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
            $endgroup$
            – Bronx
            5 hours ago










          • $begingroup$
            @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
            $endgroup$
            – VisualMelon
            5 hours ago










          • $begingroup$
            @VisualMelon please see the reasoning update above :)
            $endgroup$
            – Dmitry Nogin
            3 hours ago












          • 2




            $begingroup$
            Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
            $endgroup$
            – Bronx
            5 hours ago










          • $begingroup$
            @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
            $endgroup$
            – VisualMelon
            5 hours ago










          • $begingroup$
            @VisualMelon please see the reasoning update above :)
            $endgroup$
            – Dmitry Nogin
            3 hours ago







          2




          2




          $begingroup$
          Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
          $endgroup$
          – Bronx
          5 hours ago




          $begingroup$
          Throwing in a regular constructor is totally valid -- this is how you signal that you cannot create a valid instance using given constructor parameters. Violation of CA1065 is throwing in a static constructor only.
          $endgroup$
          – Bronx
          5 hours ago












          $begingroup$
          @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
          $endgroup$
          – VisualMelon
          5 hours ago




          $begingroup$
          @Bronx wow, thanks for calling that out. I spent some time wondering how to phrase that bit because I couldn't think of a good reason other than to make the tooling happen, so I'm glad to remove it ;)
          $endgroup$
          – VisualMelon
          5 hours ago












          $begingroup$
          @VisualMelon please see the reasoning update above :)
          $endgroup$
          – Dmitry Nogin
          3 hours ago




          $begingroup$
          @VisualMelon please see the reasoning update above :)
          $endgroup$
          – Dmitry Nogin
          3 hours ago


















          draft saved

          draft discarded















































          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f229477%2fstring-whitespaces%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

          Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

          Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367