Durian is a collection of Roslyn-based analyzers, source generators and utility libraries that greatly extend the default capabilities of C# by bringing new features found in other existing programing languages, such as Kotlin, Swift, Java, C++, and many more.
Durian is still very much in development - many planned features are still not implemented or implemented only partially. Features that are production-ready are listed in the Features section below.
If you seek more information about a specific feature, click on its name below.
DefaultParam allows to specify a default type for a generic parameter.
using Durian;
public class Test<[DefaultParam(typeof(string))]T>
{
public T Value { get; }
public Test(T value)
{
Value = value;
}
}
public class Program
{
static void Main()
{
// Test<T> can be used without type parameters - 'T' defaults to 'string'.
Test test1 = new Test("");
// Type parameter can be stated explicitly.
Test<string> test2 = new Test<string>("");
}
}
InterfaceTargets, similar to how System.AttributeUsageAttribute works, allows to specify what kinds of types an interface can be implemented by.
using Durian;
[InterfaceTargets(InterfaceTargets.Class)]
public interface ITest
{
}
// Success!
// ITest can be implemented, because ClassTest is a class.
public class ClassTest : ITest
{
}
// Error!
// ITest cannot be implemented, because StructTest is a struct, and ITest is valid only for classes.
public struct StructTest : ITest
{
}
FriendClass allows to limit access to 'internal' members by specifying a fixed list of friend types.
using Durian;
[FriendClass(typeof(A))]
public class Test
{
internal static string Key { get; }
}
public class A
{
public string GetKey()
{
// Success!
// Type 'A' is a friend of 'Test', so it can safely access internal members.
return Test.Key;
}
}
public class B
{
public string GetKey()
{
// Error!
// Type 'B' is not a friend of 'Test', so it cannot access internal members.
return Test.Key;
}
}
CopyFrom allows to copy implementations of members to other members, without the need for inheritance. A regex pattern can be provided to customize the copied implementation.
using Durian;
[CopyFromType(typeof(Other)), Pattern("text", "name")]
public partial class Test
{
}
public class Other
{
private string _text;
void Set(string text)
{
_text = text;
}
}
// Generated
partial class Test
{
private string _name;
void Set(string name)
{
_name = name;
}
}
The following modules are still in active development and are yet to be released in a not-yet-specified future.
Experimental stage is a playground of sorts - modules included here are very early in development and there in no guarantee that they will be ever actually released.
(Written by Piotr Stenke)