Stories recently tagged with 'CodeDom'

Dynamic currying: part 1(blog.svick.org)

submitted by SvickSvick(26) 8 months ago

How to dynamically create a library to curry Func delegates. read more...

add a comment |category: |Views: 2

tags: another

Dynamically Read, Compile, and Run Source Code From a Text File(vbcity.com)

submitted by JAtkinsonJAtkinson(5) 1 year, 9 months ago

Here is a simple tutorial on how to read, compile, and run code that is written in a text file. read more...

add a comment |category: |Views: 24

tags: another

Using the CodeDom to do scripting with .Net(msmvps.com)

submitted by JoacimJoacim(255) 2 years, 7 months ago

The company I work for, Interactive Medica, provides SaaS business solutions for the pharmaceutical industry. Many of our clients receive data from third-parties which they need us to import into our system. This is pretty straight-forward and common in many industries. The data arrives in different formats, CSV files (or other delimited text files), Access database, Excel Spreadsheets, and so on. Sometimes the files are zipped and sometimes not. Sometimes the files are uploaded to us via FTP and at other times we need to pull the data, also usually via FTP. read more...

add a comment |category: |Views: 59

tags: another

CodeDom API + PropertyGrid = Web Service GUI (wizdl)(wizdl.googlecode.com)

submitted by ashankarashankar(5) 3 years, 6 months ago

This open source utility allows you to quickly import and call methods on any web service using a dead simple GUI. Supports web service methods having complex parameters and return values. The C# implementation details are as follows: Use ServiceDescriptionImporter to generate proxy classes from WSDL Tweak the proxy classes and promote fields to properties so that they show up in a property grid Make properties fully editable using a couple of custom UITypeEditors read more...

add a comment |category: |Views: 52

tags: another

Extreme (and silly) AOP in C#(sharpregion.com)

submitted by AdrianAisembergAdrianAisemberg(1993) 4 years ago

Taking AOP to an extreme example, by placing the whole program in attributes. read more...

add a comment |category: |Views: 160

tags: another

CodeDOM in C# 2.0(aspalliance.com)

submitted by udaydenduluriudaydenduluri(300) 4 years, 2 months ago

CodeDOM is a very powerful Application Programming Interface (API) that is available with Microsoft .NET 2.0. This API can do wonders for you by generating code on the fly. This article takes a look at this technology and explains it with code examples wherever appropriate. read more...

4 comments |category: |Views: 196

tags: another

Dynamically Compiling C# from IronPython(voidspace.org.uk)

submitted by fuzzymanfuzzyman(25) 4 years, 6 months ago

Using the CodeDom and CSharpProvider APIs to dynamically compile C# source to in memory assemblies is one way to overcome the limtiation that you can't access attributes from IronPython. It also makes all sorts of interesting things possible. read more...

add a comment |category: |Views: 22

tags: another

C# 2.0: Arity - ever heard of it?(weblogs.sqlteam.com)

submitted by spirit1spirit1(3160) 4 years, 8 months ago

Arity is the number of arguments that a method takes. If you ever used reflection and CodeDOM, this is a good thing to know of. read more...

1 comment |category: |Views: 2

tags: another

Write your own Code Generator or Template Engine in .NET(codeproject.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 3 months ago

This paper demonstrates building a code generator, template engine, template parser, or template processor in .NET. The demo implementation uses cutting edge .NET technologies available today such as C# .NET 2.0, MS Provider Pattern, Enterprise Library January 2006, CodeDom etc. read more...

add a comment |category: |Views: 88

tags: another