Agent skill
dotnet-zero-allocation-lite
Zero Allocation 핵심 패턴 (Span, ArrayPool)
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/dotnet-zero-allocation-lite
SKILL.md
Zero Allocation 핵심
1. Span<T> 기본
// 문자열 슬라이싱 (Heap 할당 없음)
ReadOnlySpan<char> part = text.AsSpan(0, 10);
// 배열 슬라이싱
Span<int> span = data.AsSpan();
Span<int> firstHalf = span[..^(span.Length / 2)];
2. ArrayPool<T>
// 배열 대여
var buffer = ArrayPool<byte>.Shared.Rent(size);
try
{
ProcessBuffer(buffer.AsSpan(0, size));
}
finally
{
ArrayPool<byte>.Shared.Return(buffer);
}
3. stackalloc
// Stack에 작은 버퍼 할당
Span<byte> buffer = stackalloc byte[256];
4. 주의사항
- ⚠️ Span<T>는 async-await 사용 불가
- ⚠️ ArrayPool: Rent 후 반드시 Return 호출
상세 내용:
/dotnet-zero-allocationskill 참조
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?