.NET Answers

ASP.NET, HTML, CSS, Visual Studio, CSharp, VB.NET and other programming items of interest.
Subscribe

Archive for November 22nd, 2007

Free Version of Camtasia

November 22, 2007 By: Dave Category: none

This just in from http://www.warriorforum.com/forum/topic.asp?TOPIC_ID=199669

1. Download the free trial version of Camtasia Studio 3
at:
http://download.techsmith.com/camta…amtasiaf.exe (no affil.)
2. Go to this promotion page, complete your name, country
and e-mail address and Techsmith will send you the software
key to unlock the program.
http://www.techsmith.com/camtasia/pcpls.asp (no affil.)
3. Just install the program you downloaded from step 1 above
and then enter the software key you receive from Techsmith
and you’ll have a fully working version of Camtasia Studio 3
on your PC.
4. (Optional) You can upgrade to Camtasia Studio 5 if you
want to for just $149. That’s a savings of $150 over the
full price of $299.

del.icio.us Tags: ,

  

Technorati Tags: ,

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Simple Properties in C# 3.5

November 22, 2007 By: Dave Category: none

It’s such a little thing.  But, how much of our CSharp code looks something like this:

    private string _propertyName;     

    public string PropertyName
    {
        get { return _propertyName; }
        set { _propertyName = value; }
    }

(more…)