Stories recently tagged with 'Beginner'

The Disposable Pattern(nuclex.org)

submitted by CygonCygon(134) 2 years, 5 months ago

Simple explanation of the Disposable Pattern in .NET for developers new to garbage collection. Explains when to implement the IDisposable interface only, where a finalizer is required and why you mustn't call into other objects from the finalizer thread. Also shows common use cases illustrating when to implement IDisposable and when to implement the full Disposable Pattern. read more...

add a comment |category: |Views: 17

tags: another

How to add startup JavaScript code from Content Page to Master Page?(aspdotnetfaq.com)

submitted by spavkovspavkov(1718) 3 years, 9 months ago

If you are creating a website that has Master and Content Pages and if you need to add some JavaScript code from your Content pages that should run when the page is loaded you fill find out that its not straightforward. Content page do not have all the elements of HTML page like BODY tag that you could hook up to and add your script code to its onload event... read more...

add a comment |category: |Views: 21

tags: another

TDD pt2 Pig Latin(buddylindsey.com)

submitted by percent20percent20(855) 4 years, 5 months ago

Part 2 in a Test Driven Development series for the extreme beginner read more...

2 comments |category: |Views: 3

tags: another

Hello World(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4217) 5 years, 5 months ago

This is the first in a series of articles exploring the fundamentals of the C# programming language. This first part of the series describes the creation of a simple C# program that outputs the phrase "Hello World" read more...

add a comment |category: |Views: 12

tags: another