Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Class named String
Message
From
11/11/2013 03:34:31
 
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:
01587713
Views:
49
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 );
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform