How to initialize a string to "" when using auto-implemented property
c#
Solution
You indicated that you are "using it for a strongly typed view, so I don't have a constructor for it even". If you don't have access to a constructor, it sounds like maybe you shouldn't use an auto-implemented property.
Problem
How can I set a string to "" when using an auto-implemented property like: ``` public string Blah {get; set;} ```