C# ↔ TypeScript

Real-time bidirectional conversion

Conversion Settings

Configure how C# types are converted to TypeScript

Essential

C# Input

523 chars

TypeScript Output

export interface UserProfile {
  id: number;
  firstName: string;
  lastName: string;
  email: string;
  age: number;
  isActive: boolean;
  createdAt: string;
  tags: string[];
  address: Address;
  street: string;
  city: string;
  zipCode: string;
}