M
Mike Labosh
This really bugs me, and I can't for the life of me seem to be able to find
where the IDE gets this stuff from...
I add a new class to my project and get this:
using System;
namespace Foo
{
/// <summary>
/// Summary description for Bar.
/// </summary>
public class Bar
{
public Bar()
{
//
// TODO: Add constructor logic here
//
}
}
}
I would like to modify the source of a new class so that when I add a new
one, I get this:
using System;
namespace Foo {
public class Bar {
public Bar() {
}
}
}
Where the heck did they hide the templates? or is this some dumb misfeature
where the IDE generates the default text on the fly?
--
Peace & happy computing,
Mike Labosh, MCSD
"Working here is like living inside a Salvador Dali painting." -- Me. Yeah,
ME! [Oh fer cryin out loud]
where the IDE gets this stuff from...
I add a new class to my project and get this:
using System;
namespace Foo
{
/// <summary>
/// Summary description for Bar.
/// </summary>
public class Bar
{
public Bar()
{
//
// TODO: Add constructor logic here
//
}
}
}
I would like to modify the source of a new class so that when I add a new
one, I get this:
using System;
namespace Foo {
public class Bar {
public Bar() {
}
}
}
Where the heck did they hide the templates? or is this some dumb misfeature
where the IDE generates the default text on the fly?
--
Peace & happy computing,
Mike Labosh, MCSD
"Working here is like living inside a Salvador Dali painting." -- Me. Yeah,
ME! [Oh fer cryin out loud]