I shall be there. I'm really looking forward to this one. TechEd is fun, but PDC is the social and technical event of any season.
Updated Link to this post 5:57:30 PM # comment [] trackback []
using System;
namespace Corillian.Testing
{
class PrivateClass
{
public string Name;
public int Age;
private PrivateClass()
{
Name = "not initialized";
Age = 0;
}
}
class Test
{
static void Main(string[] args)
{
/// The following statement will not work as the constructor is private
/// PrivateClass newpTest = new PrivateClass();
/// But you can create the object through Serialization
PrivateClass ptest = (PrivateClass)System.Runtime.Serialization.FormatterServices.GetUninitializedObject( typeof(PrivateClass) );
ptest.Name = "Scott";
ptest.Age = 0x1D;
Console.WriteLine( String.Format("{0} {1}",ptest.Name,ptest.Age );
}
}
}
Updated Link to this post 10:46:19 AM # comment [] trackback []
Copyright 2003 Scott Hanselman
Theme Design by Bryan Bell



