Is there a setting that will allow C# to auto correct it’s casing similar to VB.NET. For example when I type dim x as integer in VB.NET, it automatically converts it to Dim x As Integer, but c# does not do this type of stuff.
Is there a setting that will allow C# to auto correct it’s casing similar
Share
No, because C# is case sensitive. The two statements could have completely different meanings. There’d be no way for the IDE to know which you meant to use.