Wednesday, 26 September 2018

Angular Code Questions

Q: How to get data from url in Angular  http://localhost:4200/about/7 const routes: Routes = [    { path: '', component: DatabindingComponent },    { path: 'about/:id', component: AboutComponent },    { path: 'notfound', component: NotfoundComponent },    { path: '**', redirectTo: 'notfound' }   ];export class AboutComponent implements OnInit {    id: string;...
Continue Reading →

Sunday, 23 September 2018

Introduction To Design Pattern

Design patterns represent the best practices used by experienced object-oriented software developers. Design patterns are solutions to general problems that software developers faced during software development.  Design pattern are evolved over a period of time by experienced software developers. They promote re usability which leads to a more robust and maintainable code.  The Design patterns...
Continue Reading →

Garbage Collection and Finalization Queue

Finalize is a special method that is automatically called by the garbage collector (GC) before the object is collected. This method is only called by the GC. The destructor in C# is automatically translated into Finalize. You can see the IL code using IDASM where you will see that destructor is renamed to finalize. When a new object is created, the memory is allocated in the managed heap. If newly...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives