In order to get the refactoring support listed here...
https://github.com/DustinCampbell/CSharpEssentials
you can simply install the following versions of the Tools, Extensions and Updates in Visual Studio 2015 RC.
In order to get the refactoring support listed here...
https://github.com/DustinCampbell/CSharpEssentials
you can simply install the following versions of the Tools, Extensions and Updates in Visual Studio 2015 RC.
A list of new language features summarised here
https://github.com/dotnet/roslyn/wiki/Languages-features-in-C%23-6-and-VB-14
and more detailed for C# only,...
https://github.com/dotnet/roslyn/wiki/New-Language-Features-in-C%23-6
Use the following function to retrieve the value of a property nested within another property in JavaScript...
export function retriveValueFromNestedProperty(objectToIterate: any, propertyName: string): any {
var array: Array<string> = propertyName.split(".");
var currentValue: any = objectToIterate[array[0]];
for (var i = 1; i < array.length; i++) {
currentValue = currentValue[array[i]];
}
return currentValue;
}
Use the following powershell script to find the last users to login to a box since a given date, in this case the 21st April 2022 at 12pm un...