Code Generation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can code be automatically generated for the functionalities for Implementing
Interface for Class in C# as it happens in vb.net
Thanks n regards
Rajeev
 
Also, if you find your class in the Class view, expand it and expand Bases
and interfaces, expand your interface you can right-click on the interface
members and select Add > override. This will generate a code stub for the
method or property.

--
Ross Donald
..NET Code Generation - http://www.radsoftware.com.au/codegenerator/


"Anders Norås [MCAD]" said:
rajeev said:
Can code be automatically generated for the functionalities for
Implementing Interface for Class in C# as it happens in vb.net
In Visual Studio .NET 2003 you can press the TAB key after writing the
interface name to generate stubs for the interface members.

Anders Norås
http://dotnetjunkies.com/weblog/anoras/
 
Back
Top