A Roslyn analyzer designed to help enforce method purity in C# projects.
Note: This project is currently in the very early stages of development. The features described below reflect the current implemented state. The primary goal is to eventually provide detailed purity analysis, but that is not yet implemented.
The primary goal of PurelySharp is to provide developers with tools to identify methods intended to be functionally pure and flag potential issues related to that intent.
Currently, the analyzer provides the following checks:
[EnforcePure]/[Pure]Attributes: Use eitherPurelySharp.Attributes.EnforcePureAttributeorPurelySharp.Attributes.PureAttributeto mark methods intended to be pure. The analyzer treats[Pure]as an interchangeable shorthand for[EnforcePure]. Applying both at once yieldsPS0005(conflict).- PS0002: Purity Not Verified: If a method is marked with a purity attribute (
[EnforcePure]or[Pure]) and the engine cannot determine it to be pure based on the current rules (see below), it reports diagnosticPS0002. - PS0003: Misplaced Attribute: If a purity attribute (
[EnforcePure]or[Pure]) is applied to any declaration other than a method (e.g., class, struct, field, property, event, parameter), the analyzer reports diagnosticPS0003. - PS0004: Missing Attribute: If a method is not marked with a purity attribute but the analysis engine determines it is likely pure based on the currently implemented rules, it reports diagnostic
PS0004as a suggestion. - Basic Purity Analysis: A limited analysis engine (
PurityAnalysisEngine) attempts to verify the purity of methods. It checks for:- Known impure operations (e.g., some I/O,
DateTime.Now, field assignments). - Purity of invoked methods (recursive check with cycle detection).
- Purity of expressions (constants, parameters,
static readonlyfields, basic operators, etc.). - Purity of basic statements (local declarations, return, simple expression statements).
- Known impure operations (e.g., some I/O,
Features NOT Currently Implemented in Detail (or planned):
- Comprehensive analysis of method bodies. While basic analysis exists, many C# features and control flow structures are not yet handled (e.g.,
if, loops,try,using,async/await, LINQ, complex assignments, most framework methods). - Code fixes for reported diagnostics.
- Configuration options.
- Support for other attributes (like
[AllowSynchronization]). - Detailed analysis of constructors, delegates, properties, indexers, etc.
The analyzer (PurelySharp.Analyzer) integrates with the C# compilation process:
- It identifies method declarations and other symbols.
- It checks for the presence and location of the purity attributes (
[EnforcePure]or[Pure]). - If either purity attribute is misplaced (not on a method), it reports
PS0003. - If a purity attribute is on a method with implementation, it invokes the
PurityAnalysisEngineto check its body.- If the engine determines the method is not pure (based on current rules), it reports
PS0002.
- If the engine determines the method is not pure (based on current rules), it reports
- If no purity attribute is on a method with implementation, it invokes the
PurityAnalysisEngine.- If the engine determines the method is pure (based on current rules), it reports
PS0004.
- If the engine determines the method is pure (based on current rules), it reports
- The internal analysis (
PurityAnalysisEngine) is still under development and does not cover all C# features or guarantee correctness.
This analyzer is not yet published. Once released, installation will likely involve:
- Attributes Package: Add a reference to the
PurelySharp.AttributesNuGet package.# Example command (package not yet available) dotnet add package PurelySharp.Attributes --version <version>
- Analyzer Package/VSIX:
- Add the
PurelySharp.AnalyzerNuGet package to your project(s) for build-time analysis. - Install the
PurelySharp.Vsixextension in Visual Studio for real-time feedback.
- Add the
Use the provided script to produce a VSIX for Visual Studio and a local NuGet package for PurelySharp.Attributes.
-
Prerequisites
- Visual Studio 2022 with the "Visual Studio extension development" workload (VSSDK)
- .NET SDK 8.0+
-
Build artifacts
# From the repo root powershell -NoProfile -ExecutionPolicy Bypass -File .\build.ps1 # Optional: Debug build powershell -NoProfile -ExecutionPolicy Bypass -File .\build.ps1 -Configuration Debug
The script stops on any failure and prints where artifacts were written. Typical locations:
- VSIX:
PurelySharp.Vsix\bin\Release\net472\PurelySharp.Vsix.vsix - NuGet:
PurelySharp.Attributes\bin\Release\PurelySharp.Attributes.<version>.nupkg
- VSIX:
-
Install the VSIX into Visual Studio
- Close Visual Studio.
- Double‑click the generated
.vsixand complete the installer. - Reopen Visual Studio.
-
Use the local NuGet package (
PurelySharp.Attributes)- In Visual Studio: Tools → NuGet Package Manager → Package Manager Settings → Package Sources
- Add a new local source pointing to
PurelySharp.Attributes\bin\Release - In your test project: Manage NuGet Packages → select the local source → install
PurelySharp.Attributes
-
Updating/uninstalling
- Re-run the build script to produce a new VSIX/NuGet; reinstall the VSIX to update
- Manage installed extensions via Extensions → Manage Extensions in Visual Studio
-
Reference the
PurelySharp.Attributesproject (or package, once available). -
Add either
[EnforcePure]or[Pure](fromPurelySharp.Attributes) to methods you intend to be functionally pure. -
Apply the attribute incorrectly to see PS0003.
using PurelySharp.Attributes; [Pure] // PS0003: Misplaced attribute on class public class Calculator { [Pure] public int Add(int a, int b) { // PS0002: Purity Not Verified will be reported currently, // as no actual purity analysis is performed yet. return a + b; } [Pure] public int GetConstant(); // No implementation, PS0002 NOT reported. [Pure] // PS0003: Misplaced attribute on field private int _counter = 0; }
-
Observe the
PS0002andPS0003diagnostics during build or in the IDE (if VSIX is installed).
Note: Diagnostic messages refer to [EnforcePure] and [Pure] interchangeably.
-
PS0002: Purity Not Verified
- Message:
Method '{0}' is marked [EnforcePure]/[Pure], but its body contains operations the analyzer cannot prove pure - Severity: Warning
- Meaning: The method is marked for purity analysis, but the necessary rules haven't been implemented yet. This diagnostic acts as a placeholder.
- Note: Triggered for methods marked with either
[EnforcePure]or[Pure].
- Message:
-
PS0003: Misplaced Attribute
- Message:
The [EnforcePure] attribute can only be applied to method declarations. - Severity: Warning
- Meaning: A purity attribute (
[EnforcePure]or[Pure]) was found on a declaration type where it is not applicable (e.g., class, struct, field, property, parameter). - Note: The message text mentions
[EnforcePure], but the rule applies equally to[Pure].
- Message:
You can build the solution and run the tests using the .NET CLI:
# Build the solution
dotnet build PurelySharp.sln
# Run tests (These currently verify PS0002/PS0003 behavior)
dotnet test PurelySharp.slnContributions are welcome! Please feel free to open issues or submit pull requests, especially regarding the implementation of specific purity-checking rules which is the main focus for future development.
This project is licensed under the MIT License.
Supported means there is some level of analysis implemented, but it does not guarantee 100% correctness or completeness.
[x] = Generally supported/handled.
[/] = Partially supported/handled with significant limitations.
[ ] = Not explicitly handled or known to be treated as impure.
- Literal expressions (numbers, strings, etc.)
-
nameofandtypeofexpressions (compile-time resolved) - Identifiers (local variables, parameters (
in,ref readonly, value),static readonlyfields) - [/] Method invocations (Recursive check, cycle detection, small known impure list. No deep analysis of external libs.)
- [/] Member access (Static readonly fields ok. Instance fields, non-readonly static fields, property gets treated as impure currently.)
- Object creation (for immutable types) - Assumed impure.
- Tuple expressions
- Switch expressions (C# 8.0+)
- Pattern matching
- Null coalescing operators (
??,?.) - Interpolated strings (Assumed impure unless constant.)
- Stack allocations and Span operations
- [/] Indices and ranges (C# 8.0+) — basic range construction is treated as pure when endpoints are pure
- Bit shift operations and basic binary/unary operators
- Async/await expressions
- Unsafe code blocks
- Pointer operations
- Local declarations (with pure initializers)
- Return statements (only as the last statement, requires pure expression)
- [/] Expression statements (Pure method calls, assignments to locals ok. Field/property assignments impure.)
- If statements
- Switch statements
- Throw statements/expressions - Treated as impure.
- Try-catch-finally blocks
- Local functions (Analyzed via invocation.)
- Using statements
- Using declarations (C# 8.0+)
- Lock statements
- Yield statements (iterator methods)
- Fixed statements
- Immutable collections (System.Collections.Immutable) - Creation assumed impure.
- Read-only collections (IReadOnly\* interfaces) - Creation assumed impure.
- Arrays (when used in a read-only manner) - Access/creation assumed impure.
- Tuples (creation)
- Collection expressions (C# 12)
- Mutable collections (List, Dictionary, etc.) - Creation/modification assumed impure.
- Modifying collection elements - Assumed impure.
- Inline arrays (C# 12)
- Regular methods
- Expression-bodied methods
- Extension methods (Analyzed via invocation.)
- Local functions (Analyzed via invocation.)
- Abstract methods (Ignored)
- [/] Recursive methods (Cycle detection exists.)
- Virtual/override methods (Analyzed like regular methods.)
- Generic methods (Handled by symbol analysis.)
- Async methods
- Iterator methods (yield return)
- Unsafe methods
- Operator overloads (Analyzed via invocation/binary op.)
- User-defined conversions (Analyzed via invocation.)
- Static abstract/virtual interface members (C# 11)
(Analysis focuses on method bodies, not purity of types themselves)
- Classes
- Interfaces
- Structs
- Records (C# 9)
- Record structs (C# 10)
- Enums
- Delegates - Invocation assumed impure.
- File-local types (C# 11)
- Primary constructors (C# 12)
- Instance methods
- Static methods
- Constructors - Not analyzed yet.
- [/] Properties (get-only) - Access treated as impure currently.
- [/] Auto-properties (get-only or init-only) - Access treated as impure currently.
- [/] Fields (readonly) - Reading
static readonlyis pure. Reading instance or non-readonly static is impure. Assignment is impure. - Events
- Indexers - Access/assignment assumed impure.
- Required members (C# 11)
- Partial properties (C# 13)
- Value types
- Reference types (passed by value)
- Ref parameters - Treated as impure.
- Out parameters - Treated as impure.
- In parameters
- Params arrays
- Params collections (C# 13)
- Optional parameters
- Optional parameters in lambda expressions (C# 12)
- Ref readonly parameters
- LINQ methods - Assumed impure unless simple constant expressions.
- [/] String operations - Constants pure, method calls follow invocation rules.
- [/] Math operations - Basic operators pure,
System.Mathcalls follow invocation rules. - Tuple operations (creation)
- Conversion methods (Parse, TryParse, etc.) - Assumed impure.
- I/O operations (File, Console, etc.) - Explicitly marked impure.
- Network operations - Explicitly marked impure.
- Threading/Task operations - Explicitly marked impure.
- Random number generation - Explicitly marked impure.
- Event subscription/invocation - Assumed impure.
- Delegate invocation - Assumed impure.
- Pattern matching
- Switch expressions
- List patterns (C# 11)
- Top-level statements (C# 9) - N/A
- File-scoped namespaces (C# 10) - Implicitly supported.
- Required members (C# 11)
- Nullable reference types annotations (C# 8.0+) - Implicitly supported.
- Caller information attributes
- Source generators - N/A
- Partial classes/methods - Implicitly supported.
- Global using directives (C# 10) - Implicitly supported.
- Generic attributes (C# 11)
- Type alias for any type (C# 12) - Implicitly supported.
- Experimental attribute (C# 12)
- Extended nameof scope
- Numeric IntPtr (nint/nuint)
- Generic attributes
- Unsigned right-shift operator (>>>)
- Checked user-defined operators
- Raw string literals
- UTF-8 string literals
- List patterns
- File-local types
- Required members
- Auto-default structs
- Pattern match Span on constant string
- Newlines in string interpolation expressions
- ref fields and scoped ref
- Generic math support (static virtual/abstract interface members)
- [~] Collection expressions - Partial support: only when creating immutable collections
- Primary constructors
- Inline arrays
- Optional parameters in lambda expressions
- ref readonly parameters
- Type alias for any type
- Experimental attribute
- Interceptors (preview)
- params collections
- Lock object
- Escape sequence \e
- Method group natural type improvements
- Implicit indexer access in object initializers
- ref/unsafe in iterators/async
- ref struct interfaces
- Overload resolution priority
- Partial properties
- field contextual keyword (preview)
- Readonly fields
- Const fields
- Get-only properties
- Init-only properties (C# 9)
- Mutable fields
- Properties with setters
- Static mutable fields
- Event fields
- Volatile fields (both reads and writes are considered impure due to their special memory ordering semantics and thread safety implications)
- Generic methods
- Generic type parameters with constraints
- Covariance and contravariance
- Reflection
- Dynamic typing
- Unsafe code
PurelySharp treats enums as pure data types. The following operations with enums are considered pure:
- Accessing enum values
- Converting enums to their underlying numeric type
- Comparing enum values
- Using methods from the
Enumclass
Note that the analyzer includes special handling for Enum.TryParse<T>() to treat it as a pure method despite using an out parameter.
public enum Status
{
Pending,
Active,
Completed,
Failed
}
public class EnumOperations
{
[EnforcePure]
public bool IsActiveOrPending(Status status)
{
return status == Status.Active || status == Status.Pending;
}
[EnforcePure]
public int GetStatusCode(Status status)
{
return (int)status;
}
[EnforcePure]
public bool ParseStatus(string value, out Status status)
{
return Enum.TryParse(value, out status);
}
[EnforcePure]
public Status GetStatusFromValue(int value)
{
return (Status)value;
}
}PurelySharp supports delegate types and operations. The purity analysis for delegates focuses on both the creation of delegates and their invocation:
- Delegate Type Definitions: Defining delegate types is always pure.
- Delegate Creation:
- Creating a delegate from a pure method is pure.
- Creating a lambda expression is pure if the lambda body is pure and it doesn't capture impure state.
- Creating an anonymous method is pure if its body is pure and it doesn't capture impure state.
- Delegate Invocation:
- Invoking a delegate is pure if the delegate target is pure and all arguments are pure.
- If the analyzer can't determine the purity of the delegate target, it conservatively marks the invocation as impure.
- Delegate Combination:
- Combining delegates (
+=,+) is pure if both delegate operands are pure. - Removing delegates (
-=,-) is pure if both delegate operands are pure.
- Combining delegates (
// Define delegate types (always pure)
public delegate int Calculator(int x, int y);
public delegate void Logger(string message);
public class DelegateOperations
{
// Pure delegate field
private readonly Func<int, int, int> _adder = (x, y) => x + y;
[EnforcePure]
public int Add(int x, int y)
{
// Creating and invoking a pure lambda delegate
Calculator calc = (a, b) => a + b;
return calc(x, y);
}
[EnforcePure]
public IEnumerable<int> ProcessNumbers(IEnumerable<int> numbers)
{
// Using delegates with LINQ (pure)
return numbers.Where(n => n > 0)
.Select(n => n * 2);
}
[EnforcePure]
public Func<int, int> GetMultiplier(int factor)
{
// Higher-order function returning a pure delegate
return x => x * factor;
}
[EnforcePure]
public int CombineDelegates(int x, int y)
{
// Combining pure delegates
Func<int, int> doubler = n => n * 2;
Func<int, int> incrementer = n => n + 1;
// Combined delegate is pure if components are pure
Func<int, int> combined = n => incrementer(doubler(n));
return combined(x) + combined(y);
}
// This would generate a diagnostic
[EnforcePure]
public void ImpureDelegateExample()
{
int counter = 0;
// Impure delegate - captures and modifies a local variable
Action incrementCounter = () => { counter++; };
// Invoking impure delegate
incrementCounter(); // Analyzer will flag this
}
}Note that delegate invocations are analyzed conservatively. If the analyzer cannot determine the purity of a delegate, it will mark the invocation as impure.
-
[EnforcePure]- Marks a method that should be analyzed for purity -
[AllowSynchronization]- Allows lock statements in pure methods when synchronizing on readonly objects
- System.IO
- System.Net
- System.Data
- System.Threading
- System.Threading.Tasks
- System.Diagnostics
- System.Security.Cryptography
- System.Runtime.InteropServices
- Random
- DateTime
- File
- Console
- Process
- Task
- Thread
- Timer
- WebClient
- HttpClient
- StringBuilder
- Socket
- NetworkStream
- Modifying fields or properties
- Reading or writing volatile fields
- Using Interlocked operations
- Calling methods with side effects
- I/O operations (file, console, network)
- Async operations
- Locking (thread synchronization)
- Event subscription/raising
- Unsafe code and pointer manipulation
- Creating mutable collections
- C# 8.0+ language features
- Different target frameworks (.NET Framework, .NET Core, .NET 5+)
The analyzer ensures that methods marked with [EnforcePure] don't contain impure operations:
using System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public int PureHelperMethod(int x)
{
return x * 2; // Pure operation
}
[EnforcePure]
public int TestMethod(int x)
{
// Call to pure method is also pure
return PureHelperMethod(x) + 5;
}
}The analyzer detects impure operations and reports diagnostics:
using System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
private int _state;
[EnforcePure]
public int TestMethod(int value)
{
_state++; // Impure operation: modifies class state
return _state;
}
}
// Analyzer Error: PMA0001 - Method 'TestMethod' is marked as pure but contains impure operationsusing System;
using System.IO;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public void TestMethod(string path)
{
File.WriteAllText(path, "test"); // Impure operation: performs I/O
}
}
// Analyzer Error: PMA0001 - Method 'TestMethod' is marked as pure but contains impure operationsusing System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public int TestMethod()
{
Console.WriteLine("Hello World"); // Impure operation: console output
return 42;
}
}
// Analyzer Error: PMA0001 - Method 'TestMethod' is marked as pure but contains impure operationsusing System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
private static string sharedState = "";
[EnforcePure]
public string TestMethod()
{
// Reading from static field is considered impure
return sharedState;
}
}
// Analyzer Error: PMA0001 - Method 'TestMethod' is marked as pure but contains impure operationsusing System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
private volatile int _counter;
[EnforcePure]
public int GetCounter()
{
// Both reading and writing to volatile fields is considered impure
// due to their special memory ordering semantics
return _counter;
}
[EnforcePure]
public void UpdateCounter(int value)
{
_counter = value; // Writing to volatile field is impure
}
}
// Analyzer Error: PMA0001 - Method 'GetCounter' is marked as pure but contains impure operations
// Analyzer Error: PMA0001 - Method 'UpdateCounter' is marked as pure but contains impure operationsusing System;
using System.Threading;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class AllowSynchronizationAttribute : Attribute { }
public class TestClass
{
private volatile bool _initialized;
private readonly object _lock = new object();
[EnforcePure]
[AllowSynchronization] // Even with AllowSynchronization, volatile read is impure
public void EnsureInitialized()
{
if (!_initialized) // Reading volatile field is impure
{
lock (_lock)
{
if (!_initialized) // Reading volatile field again is impure
{
Initialize();
_initialized = true; // Writing to volatile field is impure
}
}
}
}
private void Initialize() { /* ... */ }
}
// Analyzer Error: PMA0001 - Method 'EnsureInitialized' is marked as pure but contains impure operationsusing System;
using System.Threading;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
private volatile int _counter;
[EnforcePure]
public int IncrementAndGet()
{
// Using Interlocked with volatile fields is impure
// since it modifies shared state in a thread-safe manner
return Interlocked.Increment(ref _counter);
}
[EnforcePure]
public int CompareExchange(int newValue, int comparand)
{
// All Interlocked operations are impure
return Interlocked.CompareExchange(ref _counter, newValue, comparand);
}
}
// Analyzer Error: PMA0001 - Method 'IncrementAndGet' is marked as pure but contains impure operations
// Analyzer Error: PMA0001 - Method 'CompareExchange' is marked as pure but contains impure operationsLINQ operations are generally considered pure as they work on immutable views of data:
using System;
using System.Linq;
using System.Collections.Generic;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public IEnumerable<int> FilterAndTransform(IEnumerable<int> numbers)
{
// LINQ operations are pure
return numbers
.Where(n => n > 10)
.Select(n => n * 2)
.OrderBy(n => n);
}
}
// No analyzer errors - method is pureIterator methods using yield return can be pure:
using System;
using System.Collections.Generic;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public IEnumerable<int> GenerateFibonacciSequence(int count)
{
int a = 0, b = 1;
for (int i = 0; i < count; i++)
{
yield return a;
(a, b) = (b, a + b); // Tuple deconstruction for swapping
}
}
}
// No analyzer errors - method is pureLock statements are allowed in pure methods when using the [AllowSynchronization] attribute:
using System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class AllowSynchronizationAttribute : Attribute { }
public class TestClass
{
private readonly object _lockObj = new object();
private readonly Dictionary<string, int> _cache = new Dictionary<string, int>();
[EnforcePure]
[AllowSynchronization]
public int GetOrComputeValue(string key, Func<string, int> computeFunc)
{
lock (_lockObj) // Normally impure, but allowed with [AllowSynchronization]
{
if (_cache.TryGetValue(key, out int value))
return value;
// Compute is allowed if the function is pure
int newValue = computeFunc(key);
_cache[key] = newValue; // This would be impure without [AllowSynchronization]
return newValue;
}
}
}
// No analyzer errors with [AllowSynchronization]Modern C# pattern matching and switch expressions are supported:
using System;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class Shape { }
public class Circle : Shape { public double Radius { get; } }
public class Rectangle : Shape { public double Width { get; } public double Height { get; } }
public class TestClass
{
[EnforcePure]
public double CalculateArea(Shape shape)
{
// Switch expression with pattern matching
return shape switch
{
Circle c => Math.PI * c.Radius * c.Radius,
Rectangle r => r.Width * r.Height,
_ => throw new ArgumentException("Unknown shape type")
};
}
}
// No analyzer errors - method is pureMethods that use immutable collections remain pure:
using System;
using System.Collections.Immutable;
using System.Linq;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public ImmutableDictionary<string, int> AddToCounters(
ImmutableDictionary<string, int> counters,
string key)
{
// Working with immutable collections preserves purity
if (counters.TryGetValue(key, out int currentCount))
return counters.SetItem(key, currentCount + 1);
else
return counters.Add(key, 1);
// Note: The original collection is not modified
}
}
// No analyzer errors - method is pureComplex methods combining multiple pure operations:
using System;
using System.Linq;
using System.Collections.Generic;
using System.Collections.Immutable;
[AttributeUsage(AttributeTargets.Method)]
public class EnforcePureAttribute : Attribute { }
public class TestClass
{
[EnforcePure]
public (double Average, int Min, int Max, ImmutableList<int> Filtered) AnalyzeData(
IEnumerable<int> data, int threshold)
{
// Local function (must also be pure)
bool IsOutlier(int value) => value < 0 || value > 1000;
// Use LINQ to process the data
var filteredData = data
.Where(x => !IsOutlier(x) && x >= threshold)
.ToImmutableList();
if (!filteredData.Any())
throw new ArgumentException("No valid data points after filtering");
// Multiple computations on the filtered data
var average = filteredData.Average();
var min = filteredData.Min();
var max = filteredData.Max();
// Return a tuple with the results
return (Average: average, Min: min, Max: max, Filtered: filteredData);
}
}
// No analyzer errors - method is pureThe following examples demonstrate cases where the analyzer may fail to correctly identify impure operations:
When applying [EnforcePure] to constructors, the analyzer applies special rules to account for the unique purpose of constructors. A constructor marked as pure must follow these rules:
-
Instance field/property assignment is permitted: Unlike regular methods, constructors can assign values to instance fields and properties of the containing type.
-
Static field modification is not permitted: Modifying static fields is still considered impure, as this affects state beyond the instance being constructed.
-
Impure method calls are not permitted: Calling impure methods (like I/O operations) from a pure constructor is not allowed.
-
Collection initialization is permitted: Creating and initializing collections (e.g.,
new List<int> { 1, 2, 3 }) is allowed if the collection is assigned to an instance field. -
Base constructor calls: If a constructor calls a base constructor, the base constructor must also be pure.
[AttributeUsage(AttributeTargets.Constructor)]
public class EnforcePureAttribute : Attribute { }
public class Person
{
private readonly string _name;
private readonly int _age;
private readonly List<string> _skills;
[EnforcePure]
public Person(string name, int age)
{
_name = name;
_age = age;
_skills = new List<string>(); // Allowed: initializing a collection field
}
}public class Counter
{
private static int _instanceCount = 0;
private readonly int _id;
[EnforcePure]
public Counter() // Error: Modifies static state
{
_id = ++_instanceCount; // Impure: modifies static field
}
}public class Logger
{
private readonly string _name;
[EnforcePure]
public Logger(string name) // Error: Calls an impure method
{
_name = name;
InitializeLog(); // Calls impure method
}
private void InitializeLog()
{
Console.WriteLine($"Logger {_name} initialized"); // Impure operation
}
}
## Demo project
A ready-to-run demo app is included in the solution: `PurelySharp.Demo`.
- What it shows
- PS0002: Methods marked `[EnforcePure]` performing impure operations (state mutation, I/O, volatile reads, array mutation)
- PS0004: Methods that appear pure but are missing `[EnforcePure]`
- PS0003 is intentionally not demonstrated in the demo to keep the focus on core purity rules
- How it’s wired
- References `PurelySharp.Analyzer` and `PurelySharp.CodeFixes` as analyzers via project references
- References `PurelySharp.Attributes` as a normal project reference
- Local `.editorconfig` in `PurelySharp.Demo` tunes severities: PS0002=warning, PS0004=suggestion, PS0003=none
- Run the demo
```powershell
# Build the whole solution (ensures analyzers are built)
dotnet build .\PurelySharp.sln -c Release
# Build just the demo project
dotnet build .\PurelySharp.Demo\PurelySharp.Demo.csproj -c Release
- In Visual Studio
- Install the VSIX (see above) for live diagnostics while editing
- Open
PurelySharp.Demoand inspectProgram.csto see the diagnostics inline