Sha256: 2bdbfaecc8626810cc8cfcc4f87695a4a42d840c621506984f912f8db94fd5af

Contents?: true

Size: 749 Bytes

Versions: 281

Compression:

Stored size: 749 Bytes

Contents

using System;

public static class ErrorHandling
{
    public static void HandleErrorByThrowingException()
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public static int? HandleErrorByReturningNullableType(string input)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public static bool HandleErrorWithOutParam(string input, out int result)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public static void DisposableResourcesAreDisposedWhenExceptionIsThrown(IDisposable disposableObject)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

281 entries across 281 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.138 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.137 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.136 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.135 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.134 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.133 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.132 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.131 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.130 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.129 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.128 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.127 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.126 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.125 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.124 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.123 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.122 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.121 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.120 tracks/csharp/exercises/error-handling/ErrorHandling.cs