USGI 1.0.0
dotnet add package USGI --version 1.0.0
NuGet\Install-Package USGI -Version 1.0.0
<PackageReference Include="USGI" Version="1.0.0" />
<PackageVersion Include="USGI" Version="1.0.0" />
<PackageReference Include="USGI" />
paket add USGI --version 1.0.0
#r "nuget: USGI, 1.0.0"
#:package USGI@1.0.0
#addin nuget:?package=USGI&version=1.0.0
#tool nuget:?package=USGI&version=1.0.0
<!DOCTYPE html> <html> <head> <title>Auth Application</title> <style> /* CSS styles for the library catalog */ body { font-family: Arial, sans-serif; }
h1 {
text-align: center;
color: #333;
}
.book {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.book h2 {
margin-top: 0;
color: #555;
}
.book p {
margin: 0;
color: #777;
}
</style>
</head> <body> <h1>Auth Application</h1>
<div class="book">
<h2>Application</h2>
<p>Author: PeterJames</p>
<p>Publication Date: 2023</p>
<p>Expression: Ψ(x, t) = ∫ Φ(k) e^(i(kx - ωt)) dk
Expression: var result = myList.Where(item => item.Length > 5).Select(item => item.ToUpper()).ToList();
Explanation:
var is a keyword in C# that allows the compiler to infer the type of the variable based on the expression on the right-hand side. In this case, it will infer the type of the variable "result" based on the outcome of the expression. myList is an example of a collection (e.g., List<string>) containing elements that will be used in the expression. Where is a LINQ extension method that filters the elements of the collection based on a given condition. In this case, it filters items where the length is greater than 5. item represents the current element being evaluated in the Where method. ⇒ is the lambda operator, which separates the input parameters from the expression body in a lambda function. item.Length > 5 is the condition used in the Where method to filter the items. Select is another LINQ extension method that projects each element of a collection into a new form. item.ToUpper() is the expression within the Select method, which converts each item to uppercase using the ToUpper() method. ToList() is a method that converts the result of the LINQ expression into a new List. </p> </div>
</body> </html>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- MySql.Data (>= 8.0.33)
- Newtonsoft.Json (>= 13.0.3)
- System.Configuration.ConfigurationManager (>= 7.0.0)
- System.Data.SqlClient (>= 4.8.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 299 | 5/30/2023 |