Are these VBA programmers writing the .Net framework and languages
Many of you probably already know this, as I'm arriving late to the party.
I wanted to use the typedef equivalent but apparently not in C#. Then of course I thought I'd try the #include -- maybe so, if I wanted comments (I gather).
The end result:
Common.cs
using System;
namespace <yoursHere>
{
using ID = System.Int32;
public class objID
{
private ID itsID;
public objID( ID theID )
{
itsID = theID;
}
public ID ID
{
get { return itsID; }
set { itsID = value; }
}
}
}
Did I miss something