praeclarum / Continuous

Continuous IDE Addin enables live coding from Xamarin Studio and Visual Studio
MIT License
268 stars 33 forks source link

C# 6 Support #22

Open praeclarum opened 8 years ago

praeclarum commented 8 years ago

Nothing much we can do here aside from switching to an assembly based process (see #9).

Let's hope the Inspector team does our work for us.

kogot commented 8 years ago

You could include C# 6 support inside your code :) like you have: var args = string.Format ("http add urlacl url={0} user={1}", url, System.Environment.UserDomainName);

could change to: var args = $"http add urlacl url={url} user={System.Environment.UserDomainName}"; or var kt = kv != null ? kv.GetType () : typeof(object); could be var kt = kv?.GetType () ?? typeof(object);

Don't want to look like ф smart-ass, you did a great job.