public static string GetEmbeddedResourceAsString(
string name,
Assembly asm,
Encoding enc = null
)
Public Shared Function GetEmbeddedResourceAsString (
name As String,
asm As Assembly,
Optional enc As Encoding = Nothing
) As String
Dim name As String
Dim asm As [Assembly]
Dim enc As Encoding
Dim returnValue As String
returnValue = UtilResource.GetEmbeddedResourceAsString(name,
asm, enc)
public:
static String^ GetEmbeddedResourceAsString(
String^ name,
Assembly^ asm,
Encoding^ enc = nullptr
)
static member GetEmbeddedResourceAsString :
name : string *
asm : Assembly *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> string
No code example is currently available or this language may not be supported.
[Missing <param name="enc"/> documentation for "M:DevCase.Core.Application.Resources.UtilResource.GetEmbeddedResourceAsString(System.String,System.Reflection.Assembly,System.Text.Encoding)"]
No code example is currently available or this language may not be supported.
Dim str As String = GetEmbeddedResourceAsString("file.txt", Assembly.GetCallingAssembly(), Encoding.Default)
Console.WriteLine(str)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.