Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Class named String
Message
 
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 9.0
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01587660
Message ID:
01587730
Views:
25
Thank you for teaching me how to use extension method.

>Actually sounds like a candidate for an extension method on string:
    public static class DmitryExtensions
>    {
>        public static string Encode (this string s)
>        {
>            //Return encoded here
>            return s;
>        }
>        public static string Decode(this string s)
>        {
>            //Return decoded here
>            return s;
>        }
>    }
Called like:
    string text = "Hello".Encode();
>    private string y = text.Decode();
>
>    //You can also chain (thought not much sense in this particular context)
>    private string chained = "Hello".Encode().Decode();
If the methods will be used in other projects put them in their own DLL and reference that when you need the methods.....
>
>
>
>>My class String has two methods Encode and Decode where I can encode and decode a string. The encode and decode code has to be the "same" as my VFP code (to make ASP.NET compatible with VFP app). So I use my class String as following:
>>
>>

>>cPassword = "ABCD";
>>string Decoded;
>>Decoded = MyNameSpace.String.Decoded( cPassword );
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Reply
Map
View

Click here to load this message in the networking platform