Sha256: 1b8df8d4994725847af8c326a3cbded9e55be8260e1b4b2dbcbeef5d95091435

Contents?: true

Size: 735 Bytes

Versions: 17

Compression:

Stored size: 735 Bytes

Contents

using System;

public class SimpleCipher
{
    public SimpleCipher()
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public SimpleCipher(string key)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
    
    public string Key 
    {
        get
        {
            throw new NotImplementedException("You need to implement this function.");
        }
    }

    public string Encode(string plaintext)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public string Decode(string ciphertext)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.179 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.178 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.177 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.176 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.175 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.174 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.173 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.172 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.171 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.170 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.169 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.167 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.166 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.165 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.164 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.163 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs