Thursday, 27 January 2022

angular convert tips

 


image.gif



npm run ng serve

if get the error ng not recognised use above

Solution

Recently I found an extension - C# to TypeScript on VSCode that make the process of converting the C# class to TS interface easier (only interface for now).


No comments:

Post a Comment

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...