I'm trying to align some assignments to improve readability, but each time I paste something, Visual Studio 2013 automatically removes the extra spaces before the =
.
For example, this:
static class Constants {
public static string Something = "A value";
public static string SomethingElse = "Another value";
}
gets re-formatted like this:
static class Constants {
public static string Something = "A value";
public static string SomethingElse = "Another value";
}
Is there a way to turn this off?
ctrl-k
,ctrl-d
) without all alignments exploding :) – Monarchal