Hi,
AFAIK this is not possible.
If you are going to create new files with this request you could define a
template and select it when selecting "Add new Item" from the project
explorer.
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"George" <(E-Mail Removed)> wrote in message
news:481BD011-A43F-4EBC-8370-(E-Mail Removed)...
> Thanks.
>
> Unfortunately, I am hoping for a "global typedef" equivalent....
> --
> George
>
>
> "Jon Skeet [C# MVP]" wrote:
>
>> George <(E-Mail Removed)> wrote:
>> > Is there a C++ typedef equivalent in C#?
>>
>> Not a "global" one, but you can use a using directive for a single
>> file:
>>
>> using FooBar = System.String;
>>
>> ....
>>
>> FooBar x = "Hello";
>>
>> --
>> Jon Skeet - <(E-Mail Removed)>
>> http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
>> If replying to the group, please do not mail me too
>>