isCSharp property
bool
get
isCSharp
Checks if a file path or URL represents a C# source file.
Implementation
bool get isCSharp {
final mt = mimeType();
return mt == 'text/x-csharp';
}
Checks if a file path or URL represents a C# source file.
bool get isCSharp {
final mt = mimeType();
return mt == 'text/x-csharp';
}