Is there any tools let me to build snippets?

  • Thread starter Thread starter ABC
  • Start date Start date
A

ABC

Is there any tools let me to build interaction snippets? for example, I
want a interaction snippet for properties codes, it should let me select
readonly, public, private, and type in variable name, then generating
properties codes.
 
I don't know how to apply SnipperCompiler. I think I need a wizard which
popup dialog to let me fill property name, data type to be return, flags and
access type. I provides like-template as:

Private _<PropertyName> as <DataType>
[Private|Public|Protected] (Readonly?) Property <PropertyName> As <DataType>
Get
Return _<PropertyName>
End Get
(Readonly=False:Begin)
Set(ByVal value As <DataType>)
_<PropertyName> = value
End Set
(Readonly=False:End)
End Property
 
ABC said:
I don't know how to apply SnipperCompiler. I think I need a wizard
which popup dialog to let me fill property name, data type to be
return, flags and access type. I provides like-template as:

Private _<PropertyName> as <DataType>
[Private|Public|Protected] (Readonly?) Property <PropertyName> As
<DataType> Get
Return _<PropertyName>
End Get
(Readonly=False:Begin)
Set(ByVal value As <DataType>)
_<PropertyName> = value
End Set
(Readonly=False:End)
End Property

Try taking a look at:

http://www.devprojects.net/autocode20.aspx

It does pretty much what you want.


--
Thomas Due
Posted with XanaNews version 1.17.6.4

"A military operation involves deception. Even though you are
competent, appear to be incompetent. Though effective, appear
to be ineffective."
-- Sun-tzu, The Art of War. Strategic Assessments
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top